class XmlStreamServerFactory(xmlstream.BootstrapMixin, protocol.ServerFactory): (source)
Known subclasses: twisted.words.protocols.jabber.component.XMPPComponentServerFactory
| Present Since | |
| 8.2. |
| Method | __init__ |
Undocumented |
| Method | buildProtocol |
Create an instance of XmlStream. |
| Instance Variable | authenticatorFactory |
Factory callable that takes no arguments, to create a fresh authenticator to be associated with the XmlStream. |
Inherited from BootstrapMixin:
| Method | addBootstrap |
Add a bootstrap event handler. |
| Method | installBootstraps |
Install registered bootstrap observers. |
| Method | removeBootstrap |
Remove a bootstrap event handler. |
| Instance Variable | bootstraps |
The list of registered bootstrap event observers. |
Inherited from Factory (via ServerFactory):
| Class Method | forProtocol |
Create a factory for the given protocol. |
| Method | doStart |
Make sure startFactory is called. |
| Method | doStop |
Make sure stopFactory is called. |
| Method | logPrefix |
Describe this factory for log messages. |
| 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. |
| Class Variable | noisy |
Undocumented |
| Class Variable | protocol |
Undocumented |
| Instance Variable | numPorts |
Undocumented |
Create an instance of XmlStream.
A new authenticator instance will be created and passed to the new XmlStream. Registered bootstrap event observers are installed as well.