Part of twisted.words.protocols.jabber.xmlstream View Source View In Hierarchy
Implements interfaces: twisted.words.protocols.jabber.ijabber.IXMPPHandler
Classes derived from this class implement (part of) one or more XMPP extension protocols, and are referred to as a subprotocol implementation.
| Method | __init__ | Undocumented | 
| Method | setHandlerParent | Set the parent of the handler. | 
| Method | disownHandlerParent | Remove the parent of the handler. | 
| Method | makeConnection | A connection over the underlying transport of the XML stream has been established. | 
| Method | connectionMade | Called after a connection has been established. | 
| Method | connectionInitialized | The XML stream has been initialized. | 
| Method | connectionLost | The XML stream has been closed. | 
| Method | send | Send data over the managed XML stream. | 
| Parameters | parent | (type: IXMPPHandlerCollection) | 
| Parameters | parent | (type: IXMPPHandlerCollection) | 
At this point, no traffic has been exchanged over the XML stream given 
in xs.
This should setup xmlstream and 
call connectionMade.
| Parameters | xs | (type: XmlStream) | 
Can be overridden to perform work before stream initialization.
Can be overridden to perform work after stream initialization, e.g. to set up observers and start exchanging XML stanzas.
This method can be extended to inspect the reason argument 
and act on it.
| Parameters | obj | data to be sent over the XML stream. This is usually an object providing domish.IElement,
or serialized XML. Seexmlstream.XmlStreamfor details. | 
| Note | The stream manager maintains a queue for data sent using this method when 
there is no current initialized XML stream. This data is then sent as soon 
as a new stream has been established and initialized. Subsequently, connectionInitializedwill be called again. If this queueing is not desired, usesendonself.xmlstream. | |