class documentation

Client factory which creates AccumulatingProtocol instances.

Method __init__ Undocumented
Method clientConnectionFailed Called when a connection has failed to connect.
Method clientConnectionLost Called when an established connection is lost.
Method stopFactory This will be called before I stop listening on all Ports/Connectors.
Instance Variable deferred Undocumented
Instance Variable failDeferred Undocumented
Instance Variable failed Undocumented
Instance Variable lostReason Undocumented
Instance Variable reason Undocumented
Instance Variable stopped Undocumented

Inherited from MyProtocolFactoryMixin:

Method buildProtocol Create a AccumulatingProtocol and set it up to be able to perform callbacks.
Instance Variable called A counter which is incremented each time buildProtocol is called.
Instance Variable peerAddresses A list of the addresses passed to buildProtocol.
Instance Variable protocol The most recently created AccumulatingProtocol instance which was returned from buildProtocol.
Instance Variable protocolConnectionLost When an instance of AccumulatingProtocol is created, this will be set as its closedDeferred attribute and then this attribute will be set to None so the defer.Deferred is not used by more than one protocol.
Instance Variable protocolConnectionMade When an instance of AccumulatingProtocol is connected, if this is not None, the Deferred will be called back with the protocol instance and the attribute set to None.
Instance Variable protocolFactory Factory for protocols - takes the place of the typical protocol attribute of factories (but that name is used by this class for something else).

Inherited from ClientFactory (via MyProtocolFactoryMixin):

Method startedConnecting Called when a connection has been started.

Inherited from Factory (via MyProtocolFactoryMixin, ClientFactory):

Class Method forProtocol Create a factory for the given protocol.
Method doStart Make sure startFactory is called.
Method doStop Make sure stopFactory is called.
Method logPrefix Describe this factory for log messages.
Method startFactory This will be called before I begin listening on a Port or Connector.
Class Variable noisy Undocumented
Instance Variable numPorts Undocumented
def clientConnectionFailed(self, connector, reason): (source)

Called when a connection has failed to connect.

It may be useful to call connector.connect() - this will reconnect.

Parameters
connectorUndocumented
reason:twisted.python.failure.FailureUndocumented
def clientConnectionLost(self, connector, reason): (source)

Called when an established connection is lost.

It may be useful to call connector.connect() - this will reconnect.

Parameters
connectorUndocumented
reason:twisted.python.failure.FailureUndocumented
def stopFactory(self): (source)

This will be called before I stop listening on all Ports/Connectors.

This can be overridden to perform 'shutdown' tasks such as disconnecting database connections, closing files, etc.

It will be called, for example, before an application shuts down, if it was connected to a port. User code should not call this function directly.

deferred = (source)

Undocumented

failDeferred = (source)

Undocumented

Undocumented

lostReason = (source)

Undocumented

Undocumented