Home | Trees | Index | Help |
|
---|
Package twisted :: Package internet :: Module protocol :: Class ReconnectingClientFactory |
|
Factory
--+ |ClientFactory
--+ | ReconnectingClientFactory
ReconnectingPBClientFactory
My clients auto-reconnect with an exponential back-off.
Note that clients should call my resetDelay method after they have connected successfully.Method Summary | |
---|---|
Called when a connection has failed to connect. | |
clientConnectionLost(self,
connector,
unused_reason)
| |
Call me after a successful connection to reset. | |
Have this connector connect again, after a suitable delay. | |
I put a stop to any attempt to reconnect in progress. | |
Inherited from ClientFactory | |
Called when a connection has been started. | |
Inherited from Factory | |
Create an instance of a subclass of Protocol. | |
Make sure startFactory is called. | |
Make sure stopFactory is called. | |
This will be called before I begin listening on a Port or Connector. | |
This will be called before I stop listening on all Ports/Connectors. |
Instance Variable Summary | |
---|---|
float |
factor : a multiplicitive factor by which the delay grows |
float |
initialDelay : Delay for the first reconnection attempt. |
float |
jitter : percentage of randomness to introduce into the delay length to prevent
stampeding. |
int |
maxDelay : Maximum number of seconds between connection attempts. |
Class Variable Summary | |
---|---|
NoneType |
connector = None |
int |
continueTrying = 1 |
float |
delay = 1.0 |
NoneType |
maxRetries = None |
int |
retries = 0 |
Inherited from Factory | |
Implements |
__implemented__ = <implementedBy twisted.internet.protoc...
|
ClassProvides |
__providedBy__ = <zope.interface.declarations.ClassProvi...
|
ClassProvides |
__provides__ = <zope.interface.declarations.ClassProvide...
|
bool |
noisy = True
|
int |
numPorts = 0 |
NoneType |
protocol = None |
Method Details |
---|
clientConnectionFailed(self, connector, reason)Called when a connection has failed to connect. It may be useful to call connector.connect() - this will reconnect.
|
resetDelay(self)Call me after a successful connection to reset. I reset the delay and the retry counter. |
retry(self, connector=None)Have this connector connect again, after a suitable delay. |
stopTrying(self)I put a stop to any attempt to reconnect in progress. |
Instance Variable Details |
---|
factora multiplicitive factor by which the delay grows
|
initialDelayDelay for the first reconnection attempt.
|
jitterpercentage of randomness to introduce into the delay length to prevent stampeding.
|
maxDelayMaximum number of seconds between connection attempts.
|
Class Variable Details |
---|
connector
|
continueTrying
|
delay
|
maxRetries
|
retries
|
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1 on Sun Dec 10 22:04:45 2006 | http://epydoc.sf.net |