我试图弄清楚,如果我将通过Akka ActorRef的使用传递给其他演员不是一个反模式。
我的系统中有几个演员。有些是长期居住的(restClientRouter,发布者),有些人已经完成了工作(geoActor)。短命的演员需要向长期的演员发送消息,因此需要他们的ActorRefs。
//router for a bunch of other actors val restClientRouter = createRouter(context.system) //publishers messages to an output message queue val publisher: ActorRef = context.actorOf(Props(new PublisherActor(host,channel)),name = "pub-actor") //this actor send a message to the restClientRouter and then sends the response //to the publisher val geoActor = context.actorOf(Props(new GeoInferenceActor(restClientRouter,publisher)),name = "geo-inference-actor")
你可以看到我将ActorRefs(restClientRouter和publisher)传递给GeoInferenceActor的构造函数。这可以吗?有更好的做法吗?
解决方法
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。