I have Akka application with several actors. Actor tree looks something like this:
/user
/one TARGET
/two /three
SOURCE
In the source actor I have to send message to TARGET actor. However, I don't know how to do it properly.
Resolving ActorRef from ActorSelection every time seems to be very bad.
Are there any patterns?