コード例 #1
0
 def body():
     return threadpool.blocking_call(give_defer, result)
コード例 #2
0
 def body():
     r = threadpool.blocking_call(async_job)
     reached_here = True
     return r
コード例 #3
0
 def body():
     return threadpool.blocking_call(call)
コード例 #4
0
 def body():
     started.set()
     # < ---- here the Deferred gets cancelled
     ready.wait()
     return threadpool.blocking_call(async)
コード例 #5
0
 def body():
     r = threadpool.blocking_call(async_job)
     reached_here = True
     return r
コード例 #6
0
 def body():
     return threadpool.blocking_call(give_defer, result)
コード例 #7
0
 def body():
     return threadpool.blocking_call(call)