class DummyXMPPHandler(xmlstream.XMPPHandler):
Dummy XMPP subprotocol handler to count the methods are called on it.
Method | __init__ |
Undocumented |
Method | connection |
The XML stream has been initialized. |
Method | connection |
The XML stream has been closed. |
Method | connection |
Called after a connection has been established. |
Method | make |
A connection over the underlying transport of the XML stream has been established. |
Instance Variable | done |
Undocumented |
Instance Variable | done |
Undocumented |
Instance Variable | done |
Undocumented |
Inherited from XMPPHandler
:
Method | disown |
Remove the parent of the handler. |
Method | send |
Send data over the managed XML stream. |
Method | set |
Set the parent of the handler. |
Instance Variable | parent |
XML stream manager for this handler |
Instance Variable | xmlstream |
The managed XML stream |
The XML stream has been initialized.
Can be overridden to perform work after stream initialization, e.g. to set up observers and start exchanging XML stanzas.
The XML stream has been closed.
This method can be extended to inspect the reason argument and act on it.
Called after a connection has been established.
Can be overridden to perform work before stream initialization.
A connection over the underlying transport of the XML stream has been established.
At this point, no traffic has been exchanged over the XML stream given in xs.
This should setup xmlstream
and call connectionMade
.
Parameters | |
xs:twisted.words.protocols.jabber.xmlstream.XmlStream | Undocumented |