twisted.web.client._GzipProtocol(proxyForInterface(IProtocol))
class documentationtwisted.web.client
View Source
(View In Hierarchy)
A Protocol
implementation which wraps another one, transparently decompressing
received data.
Present Since | 11.1 |
Method | __init__ | Undocumented |
Method | dataReceived | Decompress data with the zlib decompressor, forwarding the
raw data to the original protocol. |
Method | connectionLost | Forward the connection lost event, flushing remaining data from the decompressor if any. |
Instance Variable | _zlibDecompress | A zlib decompress object used to decompress the data stream. |
Instance Variable | _response | A reference to the original response, in case of errors. |
Decompress data
with the zlib decompressor, forwarding the
raw data to the original protocol.
Forward the connection lost event, flushing remaining data from the decompressor if any.