예제 #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)