class XmlStreamFactory(xmlstream.XmlStreamFactory): (source)
Constructor: XmlStreamFactory(authenticator)
Factory for Jabber XmlStream objects as a reconnecting client.
Note that this differs from xmlstream.XmlStreamFactory
in that it generates Jabber specific XmlStream
instances that have authenticators.
Method | __init__ |
Undocumented |
Instance Variable | authenticator |
Undocumented |
Inherited from XmlStreamFactory
:
Method | build |
Create a protocol instance. |
Inherited from XmlStreamFactoryMixin
(via XmlStreamFactory
):
Instance Variable | args |
Positional arguments passed to the protocol upon instantiation. |
Instance Variable | kwargs |
Keyword arguments passed to the protocol upon instantiation. |
Inherited from BootstrapMixin
(via XmlStreamFactory
, XmlStreamFactoryMixin
):
Method | add |
Add a bootstrap event handler. |
Method | install |
Install registered bootstrap observers. |
Method | remove |
Remove a bootstrap event handler. |
Instance Variable | bootstraps |
The list of registered bootstrap event observers. |
Inherited from ReconnectingClientFactory
(via XmlStreamFactory
, XmlStreamFactoryMixin
, BootstrapMixin
):
Method | __getstate__ |
Remove all of the state which is mutated by connection attempts and failures, returning just the state which describes how reconnections should be attempted. This will make the unserialized instance behave just as this one did when it was first instantiated. |
Method | client |
Called when a connection has failed to connect. |
Method | client |
Called when an established connection is lost. |
Method | reset |
Call this method after a successful connection: it resets the delay and the retry counter. |
Method | retry |
Have this connector connect again, after a suitable delay. |
Method | stop |
Put a stop to any attempt to reconnect in progress. |
Instance Variable | clock |
The clock used to schedule reconnection. It's mainly useful to be parametrized in tests. If the factory is serialized, this attribute will not be serialized, and the default value (the reactor) will be restored when deserialized. |
Instance Variable | connector |
Undocumented |
Instance Variable | continue |
Undocumented |
Instance Variable | delay |
Undocumented |
Instance Variable | factor |
A multiplicitive factor by which the delay grows |
Instance Variable | initial |
Delay for the first reconnection attempt. |
Instance Variable | jitter |
Percentage of randomness to introduce into the delay length to prevent stampeding. |
Instance Variable | max |
Maximum number of seconds between connection attempts. |
Instance Variable | max |
Maximum number of consecutive unsuccessful connection attempts, after which no further connection attempts will be made. If this is not explicitly set, no maximum is applied. |
Instance Variable | retries |
Undocumented |
Instance Variable | _call |
Undocumented |
Inherited from ClientFactory
(via XmlStreamFactory
, XmlStreamFactoryMixin
, BootstrapMixin
, ReconnectingClientFactory
):
Method | started |
Called when a connection has been started. |
Inherited from Factory
(via XmlStreamFactory
, XmlStreamFactoryMixin
, BootstrapMixin
, ReconnectingClientFactory
, 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. |
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 |