Ping / Pong
Overview
How It Works
ping
is sent from the client to check if the server is still responsive.The server responds with a
pong
message, confirming that the connection is alive.If a
pong
response is not received within a certain timeout period, the client should attempt to reconnect.Best Practices for Ping Management
The server sends a periodic heartbeat message.
{
"type": "HEARTBEAT",
"time": 1738602951685555981
}
Upon receiving a heartbeat, the client sends a ping request.
The server responds with a pong, confirming that the connection is still active.
If no pong response is received within a timeout period, the client should close the socket and reconnect.