public final class BroadcastPool extends java.lang.Object implements Pool, PoolOverrideUnsetConfig<BroadcastPool>, scala.Product, scala.Serializable
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.
param: nrOfInstances initial number of routees in the pool
param: resizer optional resizer that dynamically adjust the pool size
param: supervisorStrategy strategy for supervising the routees, see 'Supervision Setup'
param: routerDispatcher dispatcher to use for the router head actor, which handles supervision, death watch and router management messages
Constructor and Description |
---|
BroadcastPool(com.typesafe.config.Config config) |
BroadcastPool(int nr)
Java API
|
BroadcastPool(int nrOfInstances,
scala.Option<Resizer> resizer,
SupervisorStrategy supervisorStrategy,
java.lang.String routerDispatcher,
boolean usePoolDispatcher) |
Modifier and Type | Method and Description |
---|---|
abstract static boolean |
canEqual(java.lang.Object that) |
Router |
createRouter(ActorSystem system)
Create the actual router, responsible for routing messages to routees.
|
static RouterActor |
createRouterActor() |
static Props |
enrichWithPoolDispatcher(Props routeeProps,
ActorContext context) |
abstract static boolean |
equals(java.lang.Object that) |
static boolean |
isManagementMessage(java.lang.Object msg) |
static Routee |
newRoutee(Props routeeProps,
ActorContext context) |
int |
nrOfInstances() |
int |
nrOfInstances(ActorSystem sys)
Initial number of routee instances
|
static RouterConfig |
overrideUnsetConfig(RouterConfig other) |
abstract static int |
productArity() |
abstract static java.lang.Object |
productElement(int n) |
static scala.collection.Iterator<java.lang.Object> |
productIterator() |
static java.lang.String |
productPrefix() |
static Props |
props(Props routeeProps) |
scala.Option<Resizer> |
resizer()
Pool with dynamically resizable number of routees return the
Resizer
to use. |
java.lang.String |
routerDispatcher()
Dispatcher ID to use for running the “head” actor, which handles
supervision, death watch and router management messages
|
static scala.Option<Props> |
routingLogicController(RoutingLogic routingLogic) |
static boolean |
stopRouterWhenAllRouteesRemoved() |
SupervisorStrategy |
supervisorStrategy()
SupervisorStrategy for the head actor, i.e.
|
boolean |
usePoolDispatcher()
Use a dedicated dispatcher for the routees of the pool.
|
static void |
verifyConfig(ActorPath path) |
BroadcastPool |
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 resizer and/or the supervisor strategy of the given RouterConfig
if this RouterConfig doesn't have one, i.e.
|
BroadcastPool |
withResizer(Resizer resizer)
Setting the resizer to be used.
|
BroadcastPool |
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, wait
overrideUnsetConfig
createRouterActor, enrichWithPoolDispatcher, newRoutee, props, stopRouterWhenAllRouteesRemoved
isManagementMessage, routingLogicController, verifyConfig
public BroadcastPool(int nrOfInstances, scala.Option<Resizer> resizer, SupervisorStrategy supervisorStrategy, java.lang.String routerDispatcher, boolean usePoolDispatcher)
public BroadcastPool(com.typesafe.config.Config config)
public BroadcastPool(int nr)
nr
- initial number of routees in the poolpublic static scala.Option<Props> routingLogicController(RoutingLogic routingLogic)
public static boolean isManagementMessage(java.lang.Object msg)
public static void verifyConfig(ActorPath path)
public static Routee newRoutee(Props routeeProps, ActorContext context)
public static Props enrichWithPoolDispatcher(Props routeeProps, ActorContext context)
public static boolean stopRouterWhenAllRouteesRemoved()
public static RouterActor createRouterActor()
public static final RouterConfig overrideUnsetConfig(RouterConfig other)
public abstract static boolean canEqual(java.lang.Object that)
public abstract static boolean equals(java.lang.Object that)
public abstract static java.lang.Object productElement(int n)
public abstract static int productArity()
public static scala.collection.Iterator<java.lang.Object> productIterator()
public static java.lang.String productPrefix()
public int nrOfInstances()
nrOfInstances
in interface Pool
public scala.Option<Resizer> resizer()
Pool
Resizer
to use. The resizer is invoked once when the router is created, before any messages can
be sent to it. Resize is also triggered when messages are sent to the routees, and the
resizer is invoked asynchronously, i.e. not necessarily before the message has been sent.public SupervisorStrategy supervisorStrategy()
Pool
supervisorStrategy
in interface Pool
public java.lang.String routerDispatcher()
RouterConfig
routerDispatcher
in interface RouterConfig
public boolean usePoolDispatcher()
Pool
usePoolDispatcher
in interface Pool
public Router createRouter(ActorSystem system)
RouterConfig
createRouter
in interface RouterConfig
system
- the ActorSystem this router belongs topublic int nrOfInstances(ActorSystem sys)
Pool
nrOfInstances
in interface Pool
sys
- (undocumented)public BroadcastPool withSupervisorStrategy(SupervisorStrategy strategy)
withSupervisorStrategy
in interface PoolOverrideUnsetConfig<BroadcastPool>
strategy
- (undocumented)public BroadcastPool withResizer(Resizer resizer)
withResizer
in interface PoolOverrideUnsetConfig<BroadcastPool>
resizer
- (undocumented)public BroadcastPool withDispatcher(java.lang.String dispatcherId)
dispatcherId
- (undocumented)public RouterConfig withFallback(RouterConfig other)
withFallback
in interface RouterConfig
other
- (undocumented)