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