Re: [akka-user] Custom routers in 2.3

2014-05-19 Thread Patrik Nordwall
Hi Brice, I'm not sure I understand what you want to do, but a Group does not create routees by definition. A Pool does that. Have you explored creating a custom router with the Pool trait? Each routee in a Pool must be constructed from the same Props. That might be what you think is missing. Ha

Re: [akka-user] Custom routers in 2.3

2014-05-13 Thread Brice Figureau
Hi Roland, On Thu, 2014-05-08 at 13:41 +0200, Akka Team wrote: > Hi Brice, > > > the Routers (as in those which bypass the head actor’s mailbox) are > meant for a very specific use case, and their optimizations come with > certain restrictions as you discover. What you want to achieve can be > d

Re: [akka-user] Custom routers in 2.3

2014-05-08 Thread Akka Team
Hi Brice, the Routers (as in those which bypass the head actor’s mailbox) are meant for a very specific use case, and their optimizations come with certain restrictions as you discover. What you want to achieve can be done by using the RoutingLogic inside a regular router, which gives you all the

[akka-user] Custom routers in 2.3

2014-05-05 Thread Brice Figureau
Hi, I'm porting my project from Akka 2.2.x to 2.3.2. In this project I have a custom router that was modelled from the VoteCountRouter here: http://doc.akka.io/docs/akka/2.2.4/scala/routing.html#custom-router This area changed a lot in 2.3 and I have some difficulties porting my code to this new