gloox
0.9.9.12
|
#include <iqhandler.h>
Public Member Functions | |
virtual | ~IqHandler () |
virtual bool | handleIq (Stanza *stanza)=0 |
virtual bool | handleIqID (Stanza *stanza, int context)=0 |
A virtual interface which can be reimplemented to receive IQ stanzas.
Derived classes can be registered as IqHandlers with the Client. Upon an incoming IQ packet handleIq() will be called.
Definition at line 30 of file iqhandler.h.
|
inlinevirtual |
Virtual Destructor.
Definition at line 36 of file iqhandler.h.
|
pure virtual |
Reimplement this function if you want to be notified about incoming IQs.
stanza | The complete Stanza. |
Implemented in InBandBytestreamManager, Registration, RosterManager, Disco, SOCKS5BytestreamManager, VCardManager, Adhoc, SIManager, FlexibleOffline, PrivacyManager, Search, LastActivity, PrivateXML, and NonSaslAuth.
|
pure virtual |
Reimplement this function if you want to be notified about incoming IQs with a specific value of the id
attribute. You have to enable tracking of those IDs using Client::trackID(). This is usually useful for IDs that generate a positive reply, i.e. <iq type='result' id='reg'/> where a namespace filter wouldn't work.
stanza | The complete Stanza. |
context | A value to restore context, stored with ClientBase::trackID(). |
Implemented in InBandBytestreamManager, Registration, RosterManager, Disco, SOCKS5BytestreamManager, VCardManager, Adhoc, SIManager, PrivacyManager, FlexibleOffline, Search, LastActivity, PrivateXML, and NonSaslAuth.