次の行があります。
val c = context.actorSelection("akka://ActorSystem/user/AAA/BBB/*")
c ! MessageNotification(message)
しかし、メッセージはどこにも配信されないようです。
一方、これは機能します:
val c = context.actorFor("akka://ActorSystem/user/AAA/BBB/CCC")
c ! MessageNotification(message)
私のactorSelectionが解決されず、単一のActorRefが解決されて機能する理由はありますか?