RuntimeFuture

class RuntimeFuture(mailbox_id)[source]

Bases: object

An awaitable future.

These future objects must be awaited in the same task that created them. They cannot be used as input to other tasks.

__init__(mailbox_id)[source]

Initialize a future tied to a local mailbox.

Attributes

mailbox_id

The mailbox id where this future's result will be shipped.

Methods