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