-
For example, thread1 calls StreamSend("aaa") and threads2 calls StreamSend("bbb") at the same time, to the same stream. |
Beta Was this translation helpful? Give feedback.
Answered by
anrossi
Jul 26, 2025
Replies: 1 comment
-
The data provided in a given call to |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
shit-lord
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The data provided in a given call to
StreamSend
is serialized with respect to any other given call toStreamSend
on the same stream, so you'll get "aaabbb" or "bbbaaa" depending on how the calls race each other and won't get "ababab".