I'm new to Akka.Actor system. I have some confusion regarding creation of actor via resolveOne approach. As We know, we can create actors via many ways.
The actorRef we create via resolveOne approach, will check if actor exists actor-system returns it's ref otherwise creates a new one.
My question is, what will happen if actorRef is already taken/busy? what will actorSystem do in this case, create another ref or wait for it ?
Also suggest me the best scenarios where we should use resolveOne
approach.