I believe the answer is no, but is there any way to configure the 
supervisor strategy of routers defined in the Akka config? If not, is there 
a reason or does it just not exist yet? If it's the latter where's the 
proper place to file a feature request?

I'd like to be able to do something like:

/user-read-router {
  router = round-robin
  resizer {
    lower-bound = ${settings.parallelism-min}
    upper-bound = ${settings.parallelism-max}
  }
  supervisor = "MySupervisor"
}

Currently, I'm doing this:

Props(new MyActor)
  .withRouter(FromConfig().withSupervisorStrategy(routerStrategy))
  .withDispatcher(dispatcherName)

Thanks,
Taylor

-- 
>>>>>>>>>>      Read the docs: http://akka.io/docs/
>>>>>>>>>>      Check the FAQ: 
>>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>>      Search the archives: https://groups.google.com/group/akka-user
--- 
You received this message because you are subscribed to the Google Groups "Akka 
User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to