Пример #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)