I'm trying to create some actors by using RoundRobinPool router:
workerRouter =
this.getContext().actorOf(new RoundRobinPool(5).props(Props.create(MyWorker.class)), "workerRouter");
But I cannot figure out how to assign a unique name to each created actor. Any idea?