QXmpp Version: 1.5.6
Loading...
Searching...
No Matches
Public Member Functions | Protected Member Functions | List of all members
QXmppCarbonManagerV2 Class Reference

The QXmppCarbonManagerV2 class handles message carbons as described in XEP-0280: Message Carbons. More...

Inheritance diagram for QXmppCarbonManagerV2:
Inheritance graph
[legend]
Collaboration diagram for QXmppCarbonManagerV2:
Collaboration graph
[legend]

Public Member Functions

bool handleStanza (const QDomElement &, const std::optional< QXmppE2eeMetadata > &) override
 You need to implement this method to process incoming XMPP stanzas.
 
- Public Member Functions inherited from QXmppClientExtension
 QXmppClientExtension ()
 
virtual QStringList discoveryFeatures () const
 
virtual QList< QXmppDiscoveryIq::IdentitydiscoveryIdentities () const
 
virtual bool handleStanza (const QDomElement &stanza)
 You need to implement this method to process incoming XMPP stanzas.
 
- Public Member Functions inherited from QXmppLoggable
 QXmppLoggable (QObject *parent=nullptr)
 

Protected Member Functions

void setClient (QXmppClient *client) override
 
- Protected Member Functions inherited from QXmppClientExtension
QXmppClientclient ()
 
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)
 

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.
 

Detailed Description

The QXmppCarbonManagerV2 class handles message carbons as described in XEP-0280: Message Carbons.

The manager automatically enables carbons when a connection is established. If the connection could be resumed, no new request is done. Carbon copied messages from other devices of the same account and carbon copied messages from other accounts are injected into the QXmppClient. This way you can handle them like any other incoming message by implementing QXmppMessageHandler or using QXmppClient::messageReceived().

Checks are done to ensure that the entity sending the carbon copy is allowed to send the forwarded message.

You don't need to do anything other than adding the extension to the client to use it.

The QXmppCarbonManagerV2 class handles message carbons as described in XEP-0280: Message Carbons.
Definition QXmppCarbonManagerV2.h:11
QXmppClient * client()
Definition QXmppClientExtension.cpp:78
The QXmppClient class is the main class for using QXmpp.
Definition QXmppClient.h:84
T * addNewExtension(Args... args)
Definition QXmppClient.h:129

To distinguish carbon messages, you can use QXmppMessage::isCarbonMessage().

Since
QXmpp 1.5

Member Function Documentation

◆ handleStanza()

bool QXmppCarbonManagerV2::handleStanza ( const QDomElement &  stanza,
const std::optional< QXmppE2eeMetadata > &  e2eeMetadata 
)
overridevirtual

You need to implement this method to process incoming XMPP stanzas.

Parameters
stanzaThe DOM element to be handled.
e2eeMetadataIf the element has been decrypted this contains metadata about the encryption.
Returns
You should return true if the stanza was handled and no further processing should occur, or false to let other extensions process the stanza.
Since
QXmpp 1.5

Reimplemented from QXmppClientExtension.

◆ setClient()

void QXmppCarbonManagerV2::setClient ( QXmppClient client)
overrideprotectedvirtual

Sets the client which loaded this extension.

Parameters
client

Reimplemented from QXmppClientExtension.


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