class documentation

class _HTTP11ClientFactory(protocol.Factory): (source)

View In Hierarchy

A factory for HTTP11ClientProtocol, used by HTTPConnectionPool.
Present Since
11.1
Method __init__ Undocumented
Method __repr__ Undocumented
Method build​Protocol Create an instance of a subclass of Protocol.
Instance Variable _metadata Metadata about the low-level connection details, used to make the repr more useful.
Instance Variable _quiescent​Callback The quiescent callback to be passed to protocol instances, used to return them to the connection pool.

Inherited from Factory:

Class Method for​Protocol Create a factory for the given protocol.
Method do​Start Make sure startFactory is called.
Method do​Stop Make sure stopFactory is called.
Method log​Prefix Describe this factory for log messages.
Method start​Factory This will be called before I begin listening on a Port or Connector.
Method stop​Factory This will be called before I stop listening on all Ports/Connectors.
Class Variable noisy Undocumented
Class Variable protocol Undocumented
Instance Variable num​Ports Undocumented
def __init__(self, quiescentCallback, metadata): (source)

Undocumented

def __repr__(self): (source)

Undocumented

Returns
strUndocumented
def buildProtocol(self, addr): (source)

Create an instance of a subclass of Protocol.

The returned instance will handle input on an incoming server connection, and an attribute "factory" pointing to the creating factory.

Alternatively, None may be returned to immediately close the new connection.

Override this method to alter how Protocol instances get created.

Parameters
addran object implementing twisted.internet.interfaces.IAddress
_metadata = (source)
Metadata about the low-level connection details, used to make the repr more useful.
_quiescentCallback = (source)
The quiescent callback to be passed to protocol instances, used to return them to the connection pool.