Part of twisted.web2.client.http View Source View In Hierarchy
Method | __init__ | |
Method | lineReceived | Override this for when each line is received. |
Method | rawDataReceived | Override this for when raw data is received. |
Method | submitRequest | |
Method | requestWriteFinished | Undocumented |
Method | requestReadFinished | Undocumented |
Method | setReadPersistent | Undocumented |
Method | connectionLost | Called when the connection is shut down. |
Inherited from LineReceiver:
Method | clearLineBuffer | Clear buffered data. |
Method | dataReceived | Protocol.dataReceived. Translates bytes into lines, and calls lineReceived (or rawDataReceived, depending on mode.) |
Method | setLineMode | Sets the line-mode of this receiver. |
Method | setRawMode | Sets the raw mode of this receiver. Further data received will be sent to rawDataReceived rather than lineReceived. |
Method | sendLine | Sends a line to the other end of the connection. |
Method | lineLengthExceeded | Called when the maximum line length has been reached. Override if it needs to be dealt with in some special way. |
Inherited from BaseProtocol (via LineReceiver, Protocol):
Method | makeConnection | Make a connection to a transport and a server. |
Method | connectionMade | Called when a connection is made. |
Inherited from _PauseableMixin (via LineReceiver):
Method | pauseProducing | Undocumented |
Method | resumeProducing | Undocumented |
Method | stopProducing | Undocumented |
Inherited from TimeoutMixin:
Method | callLater | Undocumented |
Method | resetTimeout | Reset the timeout count down |
Method | setTimeout | Change the timeout period |
Method | timeoutConnection | Called when the connection times out. Override to define behavior other than dropping the connection. |
Method | __timedOut | Undocumented |
Parameters | manager | The object this client reports it state to.
(type: IHTTPClientManager
) |
Parameters | request | The request to send to a remote server.
(type: ClientRequest
) |
closeAfter | If True the 'Connection: close' header will be sent, otherwise
'Connection: keep-alive'
(type: bool
) | |
Returns | A Deferred which will be called back with the twisted.web2.http.Response
from the server.
(type: twisted.internet.defer.Deferred
) |
Called when the connection is shut down.
Clear any circular references here, and any external references to this Protocol. The connection has been closed.Parameters | reason | (type: twisted.python.failure.Failure
) |