Scala message order
I wrote a Scala program that in it, in a method, send 3 messages to another player. Can I be sure that these messages are received at the destination so that I can send them?
Thanks in advance for your time.
+3
Arvin
source
to share
1 answer
Akka Documentation, Message Delivery Reliability , Discussion: Ordering Messages:
... for a given pair of actors, messages sent directly from the first to the second will not receive non-business hours.
Please note that there is no guaranteed delivery, so any message may be lost. For example: sent {1, 2, 3}
- received {1, 3}
.
+3
senia
source
to share