You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 27, 2021. It is now read-only.
If the server is not receiving any data from the client for more then 3 minutes, it will end the connection with the client.
706
+
In this case it will send a message on this topic to let the client know the reason why it was diconnected.
707
+
708
+
This is not a message for which the server expects any response, so none should be sent back to the server!
709
+
710
+
```json
711
+
{
712
+
"topic": "clientTimeout",
713
+
"payload": {
714
+
"success": false,
715
+
"data": [],
716
+
"dataLength": 0,
717
+
"warnings": ["No data received for more than 180 seconds, ending connection"],
718
+
"errors": []
719
+
}
720
+
}
721
+
```
722
+
723
+
---
724
+
703
725
#### requestRateLimitReached
704
726
When a client is sending messages to the server with a high rate, it will throttle the requests from it send a warning message _"WebSocket request rate limit reached"_.
705
727
The client should listen for this messages on this topic to know when it happens.
0 commit comments