class documentation

class UnattachedStream(AsyncByteStream, SyncByteStream):

View In Hierarchy

If a request or response is serialized using pickle, then it is no longer attached to a stream for I/O purposes. Any stream operations should result in httpx.StreamClosed.
Async Method __aiter__ Undocumented
Method __iter__ Undocumented

Inherited from AsyncByteStream:

Async Method aclose Undocumented
Async Method aread Undocumented

Inherited from SyncByteStream:

Method close Subclasses can override this method to release any network resources after a request/response cycle is complete.
Method read Simple cases can use .read() as a convenience method for consuming the entire stream and then closing it.
async def __aiter__(self):

Undocumented

Returns
AsyncIterator[bytes]Undocumented
def __iter__(self):

Undocumented

Returns
Iterator[bytes]Undocumented