gloox
1.0.28
|
#include <lastactivity.h>
Classes | |
class | Query |
Public Member Functions | |
LastActivity (ClientBase *parent) | |
virtual | ~LastActivity () |
void | query (const JID &jid) |
void | registerLastActivityHandler (LastActivityHandler *lah) |
void | removeLastActivityHandler () |
void | resetIdleTimer () |
virtual bool | handleIq (const IQ &iq) |
virtual void | handleIqID (const IQ &iq, int context) |
Public Member Functions inherited from IqHandler | |
virtual | ~IqHandler () |
This is an implementation of XEP-0012 (Last Activity) for both clients and components.
LastActivity can be used to query remote entities about their last activity time as well as answer incoming last-activity-queries.
XEP Version: 2.0
Definition at line 39 of file lastactivity.h.
LastActivity | ( | ClientBase * | parent | ) |
Constructs a new LastActivity object.
parent | The ClientBase object to use for communication. |
Definition at line 68 of file lastactivity.cpp.
|
virtual |
Virtual destructor.
Definition at line 80 of file lastactivity.cpp.
|
virtual |
Reimplement this function if you want to be notified about incoming IQs.
iq | The complete IQ stanza. |
Implements IqHandler.
Definition at line 97 of file lastactivity.cpp.
|
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 empty positive reply, i.e. <iq type='result' id='reg'/> where a namespace filter wouldn't work.
iq | The complete IQ stanza. |
context | A value to restore context, stored with ClientBase::trackID(). |
Implements IqHandler.
Definition at line 110 of file lastactivity.cpp.
void query | ( | const JID & | jid | ) |
Queries the given JID for their last activity. The result can be received by reimplementing LastActivityHandler::handleLastActivityResult() and LastActivityHandler::handleLastActivityError().
Definition at line 90 of file lastactivity.cpp.
|
inline |
Use this function to register an object as handler for incoming results of Last-Activity queries. Only one handler is possible at a time.
lah | The object to register as handler. |
Definition at line 134 of file lastactivity.h.
|
inline |
Use this function to un-register the LastActivityHandler set earlier.
Definition at line 139 of file lastactivity.h.
void resetIdleTimer | ( | ) |
Use this function to reset the idle timer. By default the number of seconds since the instantiation will be used.
Definition at line 127 of file lastactivity.cpp.