2
I’m working with Akka/Java
A reference to an actor who doesn’t exist, simply nay returns exception and/or do not know how to capture information that the actor does not exist in the actor system.
ActorSelection register = null;
register = actorSystem.actorSelection("akka://default/user/ATOR-NAO-EXISTE");
I also noticed that the path of Register is akka://default/
is not complete.
This actor does not exist, but also does not generate errors.
How should I proceed?
Perfect your answer!
– user6406