0
我的系統在Play framework 2.5和Akka內置模式下運行。我相信有兩種方法來初始化路由器。初始化Akka路由器的兩種方式之間的區別
1:
ActorRef router = akkaService.getActorSystem()
.actorOf(new RoundRobinPool(poolSize)
.props(Props.create(ProfileActor.class)), "ProfileActor");
2:
ActorRef router = akkaService.getActorSystem()
.actorOf(new Props(ProfileActor.class)
.withRouter(new RoundRobinRouter(poolSize)), "ProfileActor"));
所以我有2個問題:
- 它們有什麼不同?
- 哪種方式更好?
非常感謝!