微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

scala – 绕过ActorRef到其他演员好还是坏?

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

解决方法

有几种很好的方式来“介绍”演员参考需要他们的演员实例。

1)使用构造函数args(这正是你正在做的)创建一个需要的参数的actor

2)创建实例后,使用消息传递所需的引用

您的解决方案是完全可以接受的,甚至可以由Akka的技术负责人Roland Kuhn在这文章中提出:

Akka actor lookup or dependency injection

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐