Part of twisted.internet.protocol View Source View In Hierarchy
| Instance Variables | deferred | The Deferred which
represents this connection attempt and which will be fired when it succeeds
or fails.
 | 
| pending | After a connection attempt succeeds or fails, a delayed call which will 
fire the Deferred 
representing this connection attempt.
 | 
| Method | __init__ | Undocumented | 
| Method | __repr__ | Undocumented | 
| Method | buildProtocol | Return the pre-constructed protocol instance and arrange to fire the 
waiting Deferred to 
indicate success establishing the connection.
 | 
  
| Method | clientConnectionFailed | Arrange to fire the waiting Deferred with 
the given failure to indicate the connection could not be established.
 | 
  
| Method | fire | Clear self.pending to avoid a reference cycle and then 
invoke the callable with the value.
 | 
  
Inherited from ClientFactory:
| Method | startedConnecting | Called when a connection has been started. | 
| Method | clientConnectionLost | Called when an established connection is lost. | 
Inherited from Factory (via ClientFactory):
| Method | doStart | Make sure startFactory is called. | 
| Method | doStop | Make sure stopFactory is called. | 
| Method | startFactory | This will be called before I begin listening on a Port or Connector. | 
| Method | stopFactory | This will be called before I stop listening on all Ports/Connectors. | 
Deferred to 
indicate success establishing the connection.
Deferred with 
the given failure to indicate the connection could not be established.
self.pending to avoid a reference cycle and then 
invoke the callable with the value.