Difference between forward and tell in akka actors
The sender() will be different on the receiving end. Message sends using tell (also known as !): A tells message M to B. B tells that message to C. C thinks the sender() of message M is B. Message sends using forward: A tells message M to B. B forwards that message to C. C … Read more