gloox  1.1-svn
Public Member Functions | List of all members
ResultHandler Class Reference

#include <pubsubresulthandler.h>

Public Member Functions

virtual ~ResultHandler ()
virtual void handleItem (const JID &service, const std::string &node, const Tag *entry)=0
virtual void handleItems (const std::string &id, const JID &service, const std::string &node, const ItemList &itemList, const Error *error=0)=0
virtual void handleItemPublication (const std::string &id, const JID &service, const std::string &node, const ItemList &itemList, const Error *error=0)=0
virtual void handleItemDeletion (const std::string &id, const JID &service, const std::string &node, const ItemList &itemList, const Error *error=0)=0
virtual void handleSubscriptionResult (const std::string &id, const JID &service, const std::string &node, const std::string &sid, const JID &jid, const SubscriptionType subType, const Error *error=0)=0
virtual void handleUnsubscriptionResult (const std::string &id, const JID &service, const Error *error=0)=0
virtual void handleSubscriptionOptions (const std::string &id, const JID &service, const JID &jid, const std::string &node, const DataForm *options, const std::string &sid=EmptyString, const Error *error=0)=0
virtual void handleSubscriptionOptionsResult (const std::string &id, const JID &service, const JID &jid, const std::string &node, const std::string &sid=EmptyString, const Error *error=0)=0
virtual void handleSubscribers (const std::string &id, const JID &service, const std::string &node, const SubscriberList *list, const Error *error=0)=0
virtual void handleSubscribersResult (const std::string &id, const JID &service, const std::string &node, const SubscriberList *list, const Error *error=0)=0
virtual void handleAffiliates (const std::string &id, const JID &service, const std::string &node, const AffiliateList *list, const Error *error=0)=0
virtual void handleAffiliatesResult (const std::string &id, const JID &service, const std::string &node, const AffiliateList *list, const Error *error=0)=0
virtual void handleNodeConfig (const std::string &id, const JID &service, const std::string &node, const DataForm *config, const Error *error=0)=0
virtual void handleNodeConfigResult (const std::string &id, const JID &service, const std::string &node, const Error *error=0)=0
virtual void handleNodeCreation (const std::string &id, const JID &service, const std::string &node, const Error *error=0)=0
virtual void handleNodeDeletion (const std::string &id, const JID &service, const std::string &node, const Error *error=0)=0
virtual void handleNodePurge (const std::string &id, const JID &service, const std::string &node, const Error *error=0)=0
virtual void handleSubscriptions (const std::string &id, const JID &service, const SubscriptionMap &subMap, const Error *error=0)=0
virtual void handleAffiliations (const std::string &id, const JID &service, const AffiliationMap &affMap, const Error *error=0)=0
virtual void handleDefaultNodeConfig (const std::string &id, const JID &service, const DataForm *config, const Error *error=0)=0

Detailed Description

A virtual interface to receive item related requests results.

Derive from this interface and pass it to item related requests.

As a general rule, methods receive an Error pointer which will be null (when the request was successful) or describe the problem. Requests asking for information will have their "pointer to information" set to null when an error occured (that is they're mutually exclusive). In both cases, gloox takes care of deleting these objects.

Author
Vincent Thomasset vthom.nosp@m.asse.nosp@m.t@gma.nosp@m.il.c.nosp@m.om
Since
1.0

Definition at line 49 of file pubsubresulthandler.h.

Constructor & Destructor Documentation

virtual ~ResultHandler ( )
inlinevirtual

Virtual destructor.

Definition at line 55 of file pubsubresulthandler.h.

Member Function Documentation

virtual void handleAffiliates ( const std::string &  id,
const JID service,
const std::string &  node,
const AffiliateList *  list,
const Error error = 0 
)
pure virtual

Receives the affiliate list for a node.

Parameters
idThe reply IQ's id.
serviceService hosting the node.
nodeID of the queried node.
listAffiliation list.
errorAffiliation list retrieval Error.
See Also
Manager::getAffiliations
virtual void handleAffiliatesResult ( const std::string &  id,
const JID service,
const std::string &  node,
const AffiliateList *  list,
const Error error = 0 
)
pure virtual

Handle the affiliate list for a specific node.

Parameters
idThe reply IQ's id.
serviceService hosting the node.
nodeID of the node.
listThe Affiliate list.
errorAffiliation list modification Error.
See Also
Manager::setAffiliations
virtual void handleAffiliations ( const std::string &  id,
const JID service,
const AffiliationMap &  affMap,
const Error error = 0 
)
pure virtual

Receives the Affiliation map for a specific service.

Parameters
idThe reply IQ's id.
serviceThe queried service.
affMapThe map of node's affiliation.
errorAffiliation list retrieval Error.
See Also
Manager::getAffiliations
virtual void handleDefaultNodeConfig ( const std::string &  id,
const JID service,
const DataForm config,
const Error error = 0 
)
pure virtual

Receives the default configuration for a specific node type.

Parameters
idThe reply IQ's id.
serviceThe queried service.
configConfiguration form for the node type.
errorDefault node config retrieval Error.
See Also
Manager::getDefaultNodeConfig
virtual void handleItem ( const JID service,
const std::string &  node,
const Tag entry 
)
pure virtual

Receives the payload for an item.

Parameters
serviceService hosting the queried node.
nodeID of the parent node.
entryThe complete item Tag (do not delete).
virtual void handleItemDeletion ( const std::string &  id,
const JID service,
const std::string &  node,
const ItemList &  itemList,
const Error error = 0 
)
pure virtual

Receives the result of an item removal.

Parameters
idThe reply IQ's id.
serviceService hosting the queried node.
nodeID of the queried node. If empty, the root node has been queried.
itemListList of contained items.
errorDescribes the error case if the request failed.
See Also
Manager::deleteItem
virtual void handleItemPublication ( const std::string &  id,
const JID service,
const std::string &  node,
const ItemList &  itemList,
const Error error = 0 
)
pure virtual

Receives the result for an item publication.

Parameters
idThe reply IQ's id.
serviceService hosting the queried node.
nodeID of the queried node. If empty, the root node has been queried.
itemListList of contained items.
errorDescribes the error case if the request failed.
See Also
Manager::publishItem
virtual void handleItems ( const std::string &  id,
const JID service,
const std::string &  node,
const ItemList &  itemList,
const Error error = 0 
)
pure virtual

Receives the list of Items for a node.

Parameters
idThe reply IQ's id.
serviceService hosting the queried node.
nodeID of the queried node (empty for the root node).
itemListList of contained items.
errorDescribes the error case if the request failed.
See Also
Manager::requestItems()
virtual void handleNodeConfig ( const std::string &  id,
const JID service,
const std::string &  node,
const DataForm config,
const Error error = 0 
)
pure virtual

Receives the configuration for a specific node.

Parameters
idThe reply IQ's id.
serviceService hosting the node.
nodeID of the node.
configConfiguration DataForm.
errorConfiguration retrieval Error.
See Also
Manager::getNodeConfig
virtual void handleNodeConfigResult ( const std::string &  id,
const JID service,
const std::string &  node,
const Error error = 0 
)
pure virtual

Receives the result of a node's configuration modification.

Parameters
idThe reply IQ's id.
serviceService hosting the node.
nodeID of the node.
errorConfiguration modification Error.
See Also
Manager::setNodeConfig
virtual void handleNodeCreation ( const std::string &  id,
const JID service,
const std::string &  node,
const Error error = 0 
)
pure virtual

Receives the result of a node creation.

Parameters
idThe reply IQ's id.
serviceService hosting the node.
nodeID of the node.
errorNode creation Error.
See Also
Manager::setNodeConfig
virtual void handleNodeDeletion ( const std::string &  id,
const JID service,
const std::string &  node,
const Error error = 0 
)
pure virtual

Receives the result for a node removal.

Parameters
idThe reply IQ's id.
serviceService hosting the node.
nodeID of the node.
errorNode removal Error.
See Also
Manager::deleteNode
virtual void handleNodePurge ( const std::string &  id,
const JID service,
const std::string &  node,
const Error error = 0 
)
pure virtual

Receives the result of a node purge request.

Parameters
idThe reply IQ's id.
serviceService hosting the node.
nodeID of the node.
errorNode purge Error.
See Also
Manager::purgeNode
virtual void handleSubscribers ( const std::string &  id,
const JID service,
const std::string &  node,
const SubscriberList *  list,
const Error error = 0 
)
pure virtual

Receives the list of subscribers to a node.

Parameters
idThe reply IQ's id.
serviceService hosting the node.
nodeID of the queried node.
listSubscriber list.
errorSubscription options modification Error.
See Also
Manager::getSubscribers
virtual void handleSubscribersResult ( const std::string &  id,
const JID service,
const std::string &  node,
const SubscriberList *  list,
const Error error = 0 
)
pure virtual

Receives the result of a subscriber list modification.

Parameters
idThe reply IQ's id.
serviceService hosting the node.
nodeID of the queried node.
listSubscriber list.
errorSubscriber list modification Error.
See Also
Manager::setSubscribers
virtual void handleSubscriptionOptions ( const std::string &  id,
const JID service,
const JID jid,
const std::string &  node,
const DataForm options,
const std::string &  sid = EmptyString,
const Error error = 0 
)
pure virtual

Receives the subscription options for a node.

Parameters
idThe reply IQ's id.
serviceService hosting the queried node.
jidSubscribed entity.
nodeID of the node.
optionsOptions DataForm.
subidAn optional subscription ID.
errorSubscription options retrieval Error.
See Also
Manager::getSubscriptionOptions
virtual void handleSubscriptionOptionsResult ( const std::string &  id,
const JID service,
const JID jid,
const std::string &  node,
const std::string &  sid = EmptyString,
const Error error = 0 
)
pure virtual

Receives the result for a subscription options modification.

Parameters
idThe reply IQ's id.
serviceService hosting the queried node.
jidSubscribed entity.
nodeID of the queried node.
subidAn optional subscription ID.
errorSubscription options modification Error.
See Also
Manager::setSubscriptionOptions
virtual void handleSubscriptionResult ( const std::string &  id,
const JID service,
const std::string &  node,
const std::string &  sid,
const JID jid,
const SubscriptionType  subType,
const Error error = 0 
)
pure virtual

Receives the subscription results. In case a problem occured, the Subscription ID and SubscriptionType becomes irrelevant.

Parameters
idThe reply IQ's id.
servicePubSub service asked for subscription.
nodeNode asked for subscription.
sidSubscription ID.
jidSubscribed entity.
subTypeType of the subscription.
errorSubscription Error.
See Also
Manager::subscribe
virtual void handleSubscriptions ( const std::string &  id,
const JID service,
const SubscriptionMap &  subMap,
const Error error = 0 
)
pure virtual

Receives the Subscription list for a specific service.

Parameters
idThe reply IQ's id.
serviceThe queried service.
subMapThe map of node's subscription.
errorSubscription list retrieval Error.
See Also
Manager::getSubscriptions
virtual void handleUnsubscriptionResult ( const std::string &  id,
const JID service,
const Error error = 0 
)
pure virtual

Receives the unsubscription results. In case a problem occured, the subscription ID becomes irrelevant.

Parameters
idThe reply IQ's id.
servicePubSub service.
errorUnsubscription Error.
See Also
Manager::unsubscribe

The documentation for this class was generated from the following file: