public final class BalancingPool extends java.lang.Object implements Pool, scala.Product, scala.Serializable
Although the technique used in this implementation is commonly known as "work stealing", the actual implementation is probably best described as "work donating" because the actor of which work is being stolen takes the initiative.
The configuration parameter trumps the constructor arguments. This means that
if you provide nrOfInstances during instantiation they will be ignored if
the router is defined in the configuration file for the actor being used.
Any routees that are created by a router will be created as the router's children. The router is therefore also the children's supervisor.
The supervision strategy of the router actor can be configured with
withSupervisorStrategy(akka.actor.SupervisorStrategy). If no strategy is provided, routers default to
a strategy of “always escalate”. This means that errors are passed up to the
router's supervisor for handling.
The router's supervisor will treat the error as an error with the router itself. Therefore a directive to stop or restart will cause the router itself to stop or restart. The router, in turn, will cause its children to stop and restart.
| Constructor and Description |
|---|
BalancingPool(com.typesafe.config.Config config) |
BalancingPool(int nr)
Java API
|
BalancingPool(int nrOfInstances,
SupervisorStrategy supervisorStrategy,
java.lang.String routerDispatcher) |
| Modifier and Type | Method and Description |
|---|---|
Router |
createRouter(ActorSystem system)
Create the actual router, responsible for routing messages to routees.
|
int |
nrOfInstances()
Initial number of routee instances
|
scala.Option<Resizer> |
resizer()
Resizer cannot be used together with BalancingPool
|
java.lang.String |
routerDispatcher()
Dispatcher ID to use for running the “head” actor, which handles
supervision, death watch and router management messages
|
SupervisorStrategy |
supervisorStrategy()
SupervisorStrategy for the head actor, i.e.
|
BalancingPool |
withDispatcher(java.lang.String dispatcherId)
Setting the dispatcher to be used for the router head actor, which handles
supervision, death watch and router management messages.
|
RouterConfig |
withFallback(RouterConfig other)
Uses the supervisor strategy of the given Routerconfig
if this RouterConfig doesn't have one.
|
BalancingPool |
withSupervisorStrategy(SupervisorStrategy strategy)
Setting the supervisor strategy to be used for the “head” Router actor.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitcreateRouterActor, defaultSupervisorStrategy, enrichWithPoolDispatcher, props, stopRouterWhenAllRouteesRemoved, usePoolDispatcherisManagementMessage, routingLogicController, verifyConfigpublic BalancingPool(int nrOfInstances,
SupervisorStrategy supervisorStrategy,
java.lang.String routerDispatcher)
public BalancingPool(com.typesafe.config.Config config)
public BalancingPool(int nr)
nr - initial number of routees in the poolpublic int nrOfInstances()
PoolnrOfInstances in interface Poolpublic SupervisorStrategy supervisorStrategy()
PoolsupervisorStrategy in interface Poolpublic java.lang.String routerDispatcher()
RouterConfigrouterDispatcher in interface RouterConfigpublic Router createRouter(ActorSystem system)
RouterConfigcreateRouter in interface RouterConfigsystem - the ActorSystem this router belongs topublic BalancingPool withSupervisorStrategy(SupervisorStrategy strategy)
public BalancingPool withDispatcher(java.lang.String dispatcherId)
public RouterConfig withFallback(RouterConfig other)
withFallback in interface RouterConfig