I wonder what’s the minimal code required to start two instances of an application on a machine, which can send to and receive messages from each other.
As far as I understand, I would need
- to start an actor which can process messages.
- to tell this instance that there is another instance where messages can be sent to.
How can I do 1. and 2. in Akka?
From Akka’s home page: