Base
provide.foundation.transport.base
¶
TODO: Add module docstring.
Classes¶
Request
¶
Response
¶
Transport
¶
TransportBase
¶
Bases: ABC
Base class for transport implementations.
Source code in provide/foundation/transport/base.py
Functions¶
connect
async
¶
disconnect
async
¶
execute
abstractmethod
async
¶
stream
async
¶
Stream response data incrementally.
Note: This is an intentional design limitation. The base Transport class does not implement streaming. Subclasses may override this method to provide streaming support if needed for specific use cases.
Raises:
| Type | Description |
|---|---|
NotImplementedError
|
Streaming is not supported by this transport implementation |