Part of twisted.words.protocols.jabber.ijabber View Source View In Hierarchy
Known implementations: twisted.words.protocols.jabber.component.Service
Services that provide this interface can be added to ServiceManager
to implement (part of) the functionality of the server-side component.
Method | componentConnected | Parent component has established a connection. |
Method | componentDisconnected | Parent component has lost the connection to the Jabber server. |
Method | transportConnected | Parent component has established a connection over the underlying transport. |
At this point, authentication was succesful, and XML stanzas can be
exchanged over the XML stream xs
. This method can be used to
setup observers for incoming stanzas.
Parameters | xs | XML Stream that represents the established connection. (type: xmlstream.XmlStream ) |
Subsequent use of self.parent.send
will result in data
being queued until a new connection has been established.
At this point, no traffic has been exchanged over the XML stream. This
method can be used to change properties of the XML Stream (in
xs
), the service manager or it's authenticator prior to stream
initialization (including authentication).