QXmpp Version: 1.10.0
|
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 QStringList | discoveryFeatures () const |
virtual QList< QXmppDiscoveryIq::Identity > | discoveryIdentities () const |
virtual bool | handleStanza (const QDomElement &stanza) |
You need to implement this method to process incoming XMPP stanzas. More... | |
virtual bool | handleStanza (const QDomElement &stanza, const std::optional< QXmppE2eeMetadata > &e2eeMetadata) |
You need to implement this method to process incoming XMPP stanzas. More... | |
Public Member Functions inherited from QXmppLoggable | |
QXmppLoggable (QObject *parent=nullptr) | |
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 () const |
virtual void | setClient (QXmppClient *client) |
virtual void | onRegistered (QXmppClient *client) |
virtual void | onUnregistered (QXmppClient *client) |
void | injectIq (const QDomElement &element, const std::optional< QXmppE2eeMetadata > &e2eeMetadata) |
bool | injectMessage (QXmppMessage &&message) |
Protected Member Functions inherited from QXmppLoggable | |
void | debug (const QString &message) |
void | info (const QString &message) |
void | warning (const QString &message) |
void | logReceived (const QString &message) |
void | logSent (const QString &message) |
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.