0
私のシステムは、Playフレームワーク2.5とAkkaビルドインで動作します。ルータを初期化するには2つの方法があると思います。initへの2つの方法の違いAkka Router
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つの質問があります。
- は、それらは異なりますか?
- どちらが良いですか?
ありがとうございました!