class ClientFactory(Factory): (source)
Known subclasses: twisted.conch.client.direct.SSHClientFactory
, twisted.conch.scripts.tkconch.SSHClientFactory
, twisted.internet.protocol.ReconnectingClientFactory
, twisted.mail.relaymanager.SMTPManagedRelayerFactory
, twisted.mail.smtp.SMTPSenderFactory
, twisted.names.client.DNSClientFactory
, twisted.protocols.ftp.DTPFactory
, twisted.protocols.loopback.LoopbackClientFactory
, twisted.protocols.policies.WrappingFactory
, twisted.protocols.portforward.ProxyClientFactory
, twisted.spread.pb.PBClientFactory
, twisted.web.proxy.ProxyClientFactory
, twisted.web.xmlrpc.QueryFactory
, twisted.words.protocols.irc.DccChatFactory
, twisted.internet.endpoints._WrappingFactory
, twisted.internet.protocol._InstanceFactory
, twisted.protocols.ftp._PassiveConnectionFactory
A Protocol factory for clients.
This can be used together with the various connectXXX methods in reactors.
Method | client |
Called when a connection has failed to connect. |
Method | client |
Called when an established connection is lost. |
Method | started |
Called when a connection has been started. |
Inherited from Factory
:
Class Method | for |
Create a factory for the given protocol. |
Method | build |
Create an instance of a subclass of 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. |
Method | stop |
This will be called before I stop listening on all Ports/Connectors. |
Class Variable | noisy |
Undocumented |
Class Variable | protocol |
Undocumented |
Instance Variable | num |
Undocumented |
twisted.conch.client.direct.SSHClientFactory
, twisted.conch.scripts.tkconch.SSHClientFactory
, twisted.internet.protocol.ReconnectingClientFactory
, twisted.mail.relaymanager.SMTPManagedRelayerFactory
, twisted.mail.smtp.SMTPSenderFactory
, twisted.names.client.DNSClientFactory
, twisted.protocols.ftp.DTPFactory
, twisted.protocols.policies.WrappingFactory
, twisted.protocols.portforward.ProxyClientFactory
, twisted.spread.pb.PBClientFactory
, twisted.web.proxy.ProxyClientFactory
, twisted.words.protocols.irc.DccChatFactory
, twisted.internet.endpoints._WrappingFactory
, twisted.internet.protocol._InstanceFactory
, twisted.protocols.ftp._PassiveConnectionFactory
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 |
twisted.conch.client.direct.SSHClientFactory
, twisted.internet.protocol.ReconnectingClientFactory
, twisted.mail.smtp.SMTPSenderFactory
, twisted.names.client.DNSClientFactory
, twisted.protocols.loopback.LoopbackClientFactory
, twisted.protocols.policies.WrappingFactory
, twisted.spread.pb.PBClientFactory
, twisted.web.xmlrpc.QueryFactory
, twisted.words.protocols.irc.DccChatFactory
Called when an established connection is lost.
It may be useful to call connector.connect() - this will reconnect.
Parameters | |
connector | Undocumented |
reason:twisted.python.failure.Failure | Undocumented |
twisted.protocols.policies.WrappingFactory
, twisted.internet.endpoints._WrappingFactory
Called when a connection has been started.
You can call connector.stopConnecting() to stop the connection attempt.
Parameters | |
connector | a Connector object. |