-
Is there a way to control the maximum time between calling ConnectionStart to the final connection callback? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
The |
Beta Was this translation helpful? Give feedback.
IdleTimeoutMs
andHandshakeIdleTimeoutMs
are just for "idle timeouts" which means "How long do you keep the connection open if there is no data to exchange?". The HandshakeIdleTimeoutMs is specifically during the handshake, and the other one is after.The
DisconnectTimeoutMs
is means "How long do you keep trying/resending without getting any acknowledgement?" and is probably closer to what you're looking for.