class DTPFactory(protocol.ClientFactory): (source)
Constructor: DTPFactory(pi, peerHost, reactor)
Client factory for data transfer process protocols.
Method | __init__ |
Constructor |
Method | build |
Create an instance of a subclass of Protocol. |
Method | cancel |
Undocumented |
Method | client |
Called when a connection has failed to connect. |
Method | set |
Undocumented |
Method | stop |
This will be called before I stop listening on all Ports/Connectors. |
Method | timeout |
Undocumented |
Instance Variable | deferred |
Undocumented |
Instance Variable | delayed |
Undocumented |
Instance Variable | peer |
perform checks to make sure the ftp-pi's peer is the same as the dtp's |
Instance Variable | peer |
Undocumented |
Instance Variable | pi |
a reference to this factory's protocol interpreter |
Constant | _FAILED |
Token to signal that connection has failed. |
Constant | _FINISHED |
Token to signal that connection was successfully closed. |
Constant | _IN |
Token to signal that connection is active. |
Instance Variable | _reactor |
Undocumented |
Instance Variable | _state |
Indicates the current state of the DTPFactory. Initially, this is _IN_PROGRESS . If the connection fails or times out, it is _FAILED . If the connection succeeds before the timeout, it is _FINISHED . |
Inherited from ClientFactory
:
Method | client |
Called when an established connection is lost. |
Method | started |
Called when a connection has been started. |
Inherited from Factory
(via ClientFactory
):
Class Method | for |
Create a factory for the given protocol. |
Method | do |
Make sure startFactory is called. |
Method | do |
Make sure stopFactory is called. |
Method | log |
Describe this factory for log messages. |
Method | start |
This will be called before I begin listening on a Port or Connector. |
Class Variable | noisy |
Undocumented |
Class Variable | protocol |
Undocumented |
Instance Variable | num |
Undocumented |
Constructor
Parameters | |
pi | this factory's protocol interpreter |
peer | if peerCheck is True, this is the tuple that the generated instance will use to perform security checks |
reactor | Undocumented |
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 | |
addr | an object implementing IAddress |
Called when a connection has failed to connect.
It may be useful to call connector.connect() - this will reconnect.
Parameters | |
connector | Undocumented |
reason:twisted.python.failure.Failure | Undocumented |
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.
Indicates the current state of the DTPFactory. Initially, this is _IN_PROGRESS
. If the connection fails or times out, it is _FAILED
. If the connection succeeds before the timeout, it is _FINISHED
.