Rank: Member Groups: Member
Joined: 11/19/2009 Posts: 7 Points: 21 Location: France
|
Hello,
I have still one question about this library.
If I send two packet with "WriteAsync" of an "IConnection" instance, can I be totally sure they will be received on the client in the same order they have been send on the server ?
Thanks.
|
Rank: Administration Groups: Administration
Joined: 2/15/2008 Posts: 130 Points: 835
|
Data will be received in the same order, but there is no guarantee that you will receive the data in the same groups. Example: you send 12345 and abcde you may receive 1 and 2345abcde or just 12345abcde
There is no splitting to packets, it is data stream.
|
Rank: Member Groups: Member
Joined: 11/19/2009 Posts: 7 Points: 21 Location: France
|
Thanks you again for the quick reply.
|