summaryrefslogtreecommitdiff
path: root/src/websockets/qwebsocket.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/websockets/qwebsocket.cpp')
-rw-r--r--src/websockets/qwebsocket.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/websockets/qwebsocket.cpp b/src/websockets/qwebsocket.cpp
index d209f37..b1fc57c 100644
--- a/src/websockets/qwebsocket.cpp
+++ b/src/websockets/qwebsocket.cpp
@@ -107,6 +107,16 @@ not been filled in with new information when the signal returns.
\sa close()
*/
+/*!
+ \fn void QWebSocket::bytesWritten(qint64 bytes)
+
+ This signal is emitted every time a payload of data has been written to the socket.
+ The \a bytes argument is set to the number of bytes that were written in this payload.
+
+ \note This signal has the same meaning both for secure and non-secure websockets.
+ As opposed to QSslSocket, bytesWritten() is only emitted when encrypted data is effectively written (\sa {{QSslSocket:}}{{encryptedBytesWritten}}).
+ \sa close()
+*/
/*!
\fn void QWebSocket::textFrameReceived(QString frame, bool isLastFrame);