Class t.w.c.h.HTTPClientProtocol(basic.LineReceiver, policies.TimeoutMixin, object):

Part of twisted.web2.client.http View Source View In Hierarchy

A HTTP 1.1 Client with request pipelining support.
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.
Method setLineMode Sets the line-mode of this receiver.
Method setRawMode Sets the raw mode of this receiver.
Method sendLine Sends a line to the other end of the connection.
Method lineLengthExceeded Called when the maximum line length has been reached.

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 __timedOut Undocumented
Method timeoutConnection Called when the connection times out.
def __init__(self, manager=None): (source)
ParametersmanagerThe object this client reports it state to. (type: interfaces.IHTTPClientManager )
def lineReceived(self, line): (source)
Override this for when each line is received.
def rawDataReceived(self, data): (source)
Override this for when raw data is received.
def submitRequest(self, request, closeAfter=True): (source)
ParametersrequestThe request to send to a remote server. (type: ClientRequest )
closeAfterIf True the 'Connection: close' header will be sent, otherwise 'Connection: keep-alive' (type: bool )
Returnstwisted.internet.defer.Deferred
Unknown Field: callbacktwisted.web2.http.Response from the server.
def requestWriteFinished(self, request): (source)
Undocumented
def requestReadFinished(self, request): (source)
Undocumented
def setReadPersistent(self, persist): (source)
Undocumented
def connectionLost(self, reason): (source)

Called when the connection is shut down.

Clear any circular references here, and any external references to this Protocol. The connection has been closed.
Parametersreason(type: twisted.python.failure.Failure )
API Documentation for twisted, generated by pydoctor.