When using a WebSocket full-duplex data connection between a client and a server, am I guaranteed, when sending two messages from the server, that I will receive those two exact same messages on the client, something TCP does not ?
In other words, if the server sends in turn hello
and then its me
, does the client always receive two messages containing hello
and its me
or is it possible the client receives helloit
and then s me
or even one only message like helloits me
?