In Erlang if two processes A and B are sending message to a process C simultaneously. Will there be a race condition?
- C ! {very large message} sent by A
- C ! {very large message} sent by B
Will C receive the complete message from A and then proceed for the message from B? or is it that C is likely be going to receive chunks of A's message along with chunks of B's message?