Class ActorFuture
Future to an actor's method call
Declaration
class ActorFuture
source linkDocumentation
Whenever you call a method on an Actor you get an ActorFuture immediately
while the computation happens in the background. You can call ``.result``
to block and collect the full result
See also
Actor
Methods
▷ def __init__(self, q, io_loop, result=None) ▷ def result(self, timeout=None)
Reexports