interface documentation
class IProtocolFactory(Interface): (source)
Known implementations: twisted.internet.protocol.Factory
, twisted.application._client_service._DisconnectFactory
Interface for protocol factories.
Method | build |
Called when a connection has been established to addr. |
Method | do |
Called every time this is connected to a Port or Connector. |
Method | do |
Called every time this is unconnected from a Port or Connector. |
Called when a connection has been established to addr.
If None is returned, the connection is assumed to have been refused, and the Port will close the connection.
Parameters | |
addr:IAddress | The address of the newly-established connection |
Returns | |
Optional[ | None if the connection was refused, otherwise an object providing IProtocol . |