Akka actorFor vs passing an ActorRef
问题 I'm learning Akka and I'm trying to figure out how to get actors talking to each other (let's call them A and B ). It's not a request / response scenario, A and B are sending each other messages at any time. At the moment I've got two sibling actors that pass messages in both directions to each other. They're both created directly on the ActorSystem . I had initially passed the ActorRef of A into the constructor of B . But I can't pass the ActorRef of B to the constructor of A because it