[akka-user] Using a BalancingPool with PriorityGenerator

2014-11-26 Thread Jelmer Kuperus
Hi I am trying to get a balancing pool working in conjunction with a priority mailbox (eg using the PriorityGenerator) I expected the following to work : context.actorOf(BalancingPool(5).withDispatcher("prio-dispatcher").props(Props(new Actor))) but it seems that the PriorityGenerator never

Re: [akka-user] Using a BalancingPool with PriorityGenerator

2014-11-28 Thread Patrik Nordwall
I think that might not work in Akka 2.3.x. It was improved by issue #13964 and corresponding pull request #2127 . Regards, Patrik On Wed, Nov 26, 2014 at 9:34 PM, Jelmer Kuperus wrote: > Hi I am trying to get a