=clu #15412 Add paths(system) method to Group router

to be able to use the role correctly in cluster aware routers

This solution is very similar to what we did for nrOfInstances
in Pool routers.
This commit is contained in:
Patrik Nordwall 2015-08-20 17:31:36 +02:00
parent 6420a37250
commit a94f7cdc98
16 changed files with 188 additions and 15 deletions

View file

@ -147,6 +147,14 @@ In order to make cluster routers smarter about when they can start local routees
In case you have implemented a custom Pool you will have to update the method's signature,
however the implementation can remain the same if you don't need to rely on an ActorSystem in your logic.
Group routers paths method now takes ActorSystem
===============================================
In order to make cluster routers smarter about when they can start local routees,
``paths`` defined on ``Group`` now takes ``ActorSystem`` as an argument.
In case you have implemented a custom Group you will have to update the method's signature,
however the implementation can remain the same if you don't need to rely on an ActorSystem in your logic.
Logger names use full class name
================================
Previously, few places in akka used "simple" logger names, such as ``Cluster`` or ``Remoting``.