The QXmppRpcManager class make it possible to invoke remote methods and to expose local interfaces for remote procedure calls, as specified by XEP-0009: Jabber-RPC. More...
#include <QXmppRpcManager.h>
 
  
 | Public Member Functions | |
| QXmppRpcManager () | |
| Constructs a QXmppRpcManager. | |
| void | addInvokableInterface (QXmppInvokable *interface) | 
| QXmppRemoteMethodResult | callRemoteMethod (const QString &jid, const QString &interface, const QVariant &arg1=QVariant(), const QVariant &arg2=QVariant(), const QVariant &arg3=QVariant(), const QVariant &arg4=QVariant(), const QVariant &arg5=QVariant(), const QVariant &arg6=QVariant(), const QVariant &arg7=QVariant(), const QVariant &arg8=QVariant(), const QVariant &arg9=QVariant(), const QVariant &arg10=QVariant()) | 
|  Public Member Functions inherited from QXmppClientExtension | |
| QXmppClientExtension () | |
| virtual | ~QXmppClientExtension () | 
| virtual QStringList | discoveryFeatures () const | 
| virtual QList < QXmppDiscoveryIq::Identity > | discoveryIdentities () const | 
| virtual bool | handleStanza (const QDomElement &stanza)=0 | 
| You need to implement this method to process incoming XMPP stanzas. | |
|  Public Member Functions inherited from QXmppLoggable | |
| QXmppLoggable (QObject *parent=0) | |
| Additional Inherited Members | |
|  Signals inherited from QXmppLoggable | |
| void | setGauge (const QString &gauge, double value) | 
| Sets the given gauge to value. | |
| void | logMessage (QXmppLogger::MessageType type, const QString &msg) | 
| This signal is emitted to send logging messages. | |
| void | updateCounter (const QString &counter, qint64 amount=1) | 
| Updates the given counter by amount. | |
|  Protected Member Functions inherited from QXmppClientExtension | |
| QXmppClient * | client () | 
| virtual void | setClient (QXmppClient *client) | 
The QXmppRpcManager class make it possible to invoke remote methods and to expose local interfaces for remote procedure calls, as specified by XEP-0009: Jabber-RPC.
To make use of this manager, you need to instantiate it and load it into the QXmppClient instance as follows:
| void QXmppRpcManager::addInvokableInterface | ( | QXmppInvokable * | interface | ) | 
Adds a local interface which can be queried using RPC.
| interface | 
| QXmppRemoteMethodResult QXmppRpcManager::callRemoteMethod | ( | const QString & | jid, | 
| const QString & | interface, | ||
| const QVariant & | arg1 = QVariant(), | ||
| const QVariant & | arg2 = QVariant(), | ||
| const QVariant & | arg3 = QVariant(), | ||
| const QVariant & | arg4 = QVariant(), | ||
| const QVariant & | arg5 = QVariant(), | ||
| const QVariant & | arg6 = QVariant(), | ||
| const QVariant & | arg7 = QVariant(), | ||
| const QVariant & | arg8 = QVariant(), | ||
| const QVariant & | arg9 = QVariant(), | ||
| const QVariant & | arg10 = QVariant() | ||
| ) | 
Calls a remote method using RPC with the specified arguments.
 1.8.1.2
 1.8.1.2