我试图弄清楚,如果我将通过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的构造函数。这可以吗?有更好的做法吗?