QWebChannelAbstractTransport¶
Communication channel between the C++
QWebChannel
server and a HTML/JS client. More…
Detailed Description¶
Users of the
QWebChannel
must implement this interface and connect instances of it to theQWebChannel
server for every client that should be connected to theQWebChannel
. The Qt WebChannel Standalone Example shows how this can be done using Qt WebSockets .Note
The JSON message protocol is considered internal and might change over time.
See also
Qt WebChannel Standalone Example
- class PySide2.QtWebChannel.QWebChannelAbstractTransport([parent=Q_NULLPTR])¶
- param parent:
Constructs a transport object with the given
parent
.
- PySide2.QtWebChannel.QWebChannelAbstractTransport.messageReceived(message, transport)¶
- Parameters:
message –
QJsonObject
transport –
PySide2.QtWebChannel.QWebChannelAbstractTransport
- PySide2.QtWebChannel.QWebChannelAbstractTransport.sendMessage(message)¶
- Parameters:
message –
QJsonObject
Sends a JSON
message
to the remote client. An implementation would serialize the message and transmit it to the remote JavaScript client.
© 2022 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.