[akka-user] Re: RoundRobinPool with remote routees

2016-08-03 Thread Gabor Kolok
Problem was that ActorSystem was not remote-enabled, because ConfigFactory.load silently fallback to empty config if config resource name is wrong. Gabor 2016. augusztus 2., kedd 21:00:31 UTC+2 időpontban Gabor Kolok a következőt írta: > > Hi, > > I am creating a router with t

[akka-user] RoundRobinPool with remote routees

2016-08-02 Thread Gabor Kolok
Hi, I am creating a router with the following code in an Actor: val router: ActorRef = { val addresses = Seq( Address("akka.tcp", "workersSystem", "localhost", 2555) ) context.actorOf( RemoteRouterConfig(RoundRobinPool(1), addresses).props(Props[ WorkerActor])) } The