aiowamp.TransportABC¶
-
class
aiowamp.TransportABC[source]¶ Abstract transport type.
A Transport connects two WAMP Peers and provides a channel over which WAMP messages for a WAMP Session can flow in both directions.
WAMP can run over any Transport which is message-based, bidirectional, reliable and ordered.
-
__init__()¶ Initialize self. See help(type(self)) for accurate signature.
Methods
__init__Initialize self. close()Close the transport. recv()Receive a message. send(msg)Send a message. Attributes
openWhether the transport is open and usable. -