Class swarmauri_core.transports.ITransport.ITransport
swarmauri_core.transports.ITransport.ITransport
Bases: ABC
Capability-aware transport interface.
supports
abstractmethod
supports()
Return the capability set advertised by the transport.
Source code in swarmauri_core/transports/ITransport.py
15 16 17 |
|
server
abstractmethod
server(**bind_kwargs)
Return a context manager that starts the transport's server side.
Source code in swarmauri_core/transports/ITransport.py
19 20 21 |
|
client
abstractmethod
client(**connect_kwargs)
Return a context manager that opens the transport's client side.
Source code in swarmauri_core/transports/ITransport.py
23 24 25 26 27 |
|