Is there some kind of ordering mechanism in Socket.IO that guarantees that events are received in order by clients?
For example: if a server emits event Evt1
to client A, and the server broadcasts Evt2
to all clients.
Thus client A receives Evt1
then Evt2
and only in that order.
My guess is NO and, if it's the case, how would you implement it, or are there existing solutions?