My application needs to be able to create a tree structure of actors. The standard way to do this I imagine would be to put the instantiation code inside the actors so they can instantiate their children. The approach I would rather would be to be able to instantiate an actor at a given path. Such as create actor A in mySystem and then being able to directly create akka://mySystem/A/B and other actors. Does such functionality exist? It would simplify my code greatly.
EDIT: Now that I'm not on my phone, let me elaborate.
say I have a class
class myActor extends actor
and I need to make an n-way tree of these. Instead of having the code required to instantiate their own children in the receive function with something like
case Create(n:Int) => {}
I am looking to simplify the myActor code by not including any of that and instead being able to create my hierarchy at the start of my code manually. So ideally something like this (assuming hypothetical static function "create"):
val sys = ActorSystem("mySystem")
Akka.Actors.Create("akka://mySystem/a", new myActor())
Akka.Actors.Create("akka://mySystem/a/b", new myActor())
Akka.Actors.Create("akka://mySystem/a/c", new myActor())
which would create the actor tree:
a
/ \
b c
Now, does this exist? Is there a better way to do this without cluttering my actor code with the instantiation code?
EDIT, round 2:
Ok, looks like this functionality doesn't exist. I instead created a sub-trait of actor and forced all my instantiation code in there so that my concrete implementation classes are still tidy.