Public Member Functions | |
def | __init__ |
def | get_result |
def | is_ready |
def | start |
Public Attributes | |
keys | |
runner |
Returns the results of multiple previous `Callbacks <Callback>`. The argument is a sequence of `Callback` keys, and the result is a list of results in the same order. `WaitAll` is equivalent to yielding a list of `Wait` objects. .. deprecated:: 4.0 Use `Futures <.Future>` instead.
def tornado.gen.WaitAll.__init__ | ( | self, | |
keys | |||
) |
def tornado.gen.WaitAll.get_result | ( | self | ) |
Returns the value to use as the result of the yield expression. This method will only be called once, and only after `is_ready` has returned true.
Reimplemented from tornado.gen.YieldPoint.
def tornado.gen.WaitAll.is_ready | ( | self | ) |
Called by the runner to determine whether to resume the generator. Returns a boolean; may be called more than once.
Reimplemented from tornado.gen.YieldPoint.
def tornado.gen.WaitAll.start | ( | self, | |
runner | |||
) |
Called by the runner after the generator has yielded. No other methods will be called on this object before ``start``.
Reimplemented from tornado.gen.YieldPoint.