AwaitableNode¶
Canonical path: o6.node.AwaitableNode
AwaitableNode
¶
A node lookup that has not been resolved yet.
Returned by attribute access on an asynchronous client, so that a chain such
as await client.objectsNode.server.serverStatus performs one browse per
step without awaiting in between. Awaiting it yields the resolved
Node; attribute access and calls extend the chain instead.
Functions¶
__init__
¶
__call__
¶
Read or write the resolved node, returning another awaitable step.
Takes the same arguments as Node.__call__, and defers them
until the chain is awaited.