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
When we connect to multiple clients and send data(json string) to them over websocket using WriteAsync. Will there be any loss of messages? How best we can confirm the delivery of perticular message?
The text was updated successfully, but these errors were encountered:
Messages may be lost if the connection is broken or half dead. The WebSocket specification does not provide any mechanism for reliable messaging, so if you are worried about messages getting lost, you should implement your own message acknowledgement schema, or use a proper message broker.
When we connect to multiple clients and send data(json string) to them over websocket using WriteAsync. Will there be any loss of messages? How best we can confirm the delivery of perticular message?
The text was updated successfully, but these errors were encountered: