QWebChannelAbstractTransport Class▲
-
Header: QWebChannelAbstractTransport
-
Since: Qt 5.4
-
qmake: QT += webchannel
-
Inherits: QObject
Detailed Description▲
Users of the QWebChannel must implement this interface and connect instances of it to the QWebChannel server for every client that should be connected to the QWebChannel. The Qt WebChannel Standalone Example shows how this can be done using Qt WebSockets.
The JSON message protocol is considered internal and might change over time.
See Also▲
See also Qt WebChannel Standalone Example
Member Function Documentation▲
[explicit] QWebChannelAbstractTransport::QWebChannelAbstractTransport(QObject *parent = nullptr)▲
Constructs a transport object with the given parent.
[override virtual] QWebChannelAbstractTransport::~QWebChannelAbstractTransport()▲
Destroys the transport object.
void QWebChannelAbstractTransport::messageReceived(const QJsonObject &message, QWebChannelAbstractTransport *transport)▲
This signal must be emitted when a new JSON message was received from the remote client. The transport argument should be set to this transport object.
[pure virtual] void QWebChannelAbstractTransport::sendMessage(const QJsonObject &message)▲
Sends a JSON message to the remote client. An implementation would serialize the message and transmit it to the remote JavaScript client.