Yes, messages are enqueued in the remoting layer such that the original ordering constraint it upheld, then transmitted in sequence and delivered to recipient mailboxes in that same sequence as well (synchronously—beware of bounded mailboxes with push timeout > 0).
In short, we rely upon the local message ordering guarantees to transitively implement the remote extension of it. Regards, Roland > 2 feb 2016 kl. 15:53 skrev Guido Medina <[email protected]>: > > Imagine there is a dedicated mailbox per remote TCP connection, example: > Assume you have node 1, node 2 and node 3 > node 1 has a single consumer multiple producer mailbox dedicated for node 2 > and another for node 3. > that same for the other nodes. > So if many actors from node 1 to node 2, each actor individually can only > queue its messages sequentially, interleaving messages will only happen > between different senders but with the same sender. > A different rule is applied to the recipient, you deliver the messages that > arrive sequentially to their respective mailbox interleaving the ones that > the sender interleaved but only between different senders. > > Akka team correct me if my assumptions are wrong. > > Guido. > > On Tuesday, February 2, 2016 at 1:38:00 PM UTC, Joseph Noir wrote: > On a local node, yes, sure. But how does this work in a distributed setup? > > -- > >>>>>>>>>> Read the docs: http://akka.io/docs/ <http://akka.io/docs/> > >>>>>>>>>> Check the FAQ: > >>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html > >>>>>>>>>> <http://doc.akka.io/docs/akka/current/additional/faq.html> > >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user > >>>>>>>>>> <https://groups.google.com/group/akka-user> > --- > You received this message because you are subscribed to the Google Groups > "Akka User List" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected] > <mailto:[email protected]>. > To post to this group, send email to [email protected] > <mailto:[email protected]>. > Visit this group at https://groups.google.com/group/akka-user > <https://groups.google.com/group/akka-user>. > For more options, visit https://groups.google.com/d/optout > <https://groups.google.com/d/optout>. Dr. Roland Kuhn Akka Tech Lead Typesafe <http://typesafe.com/> – Reactive apps on the JVM. twitter: @rolandkuhn <http://twitter.com/#!/rolandkuhn> -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: >>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user --- You received this message because you are subscribed to the Google Groups "Akka User List" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/d/optout.
