如何在Akka Classic中向演员的父母发送消息?
执行组件向其父级发送消息的方法是什么?
我使用的是 Akka 2.2
您正在寻找
getContext().parent()
它为您提供了父级的ActorRef,因此您可以这样做
getContext().parent().tell(...)
在 Akka 2.4 中,您必须在 actor 内部执行操作才能获得其父 actor 引用。之后,您可以像以前一样向它发送消息()。context.parent
context.parent ! "hello"