Package akka.routing
Class BroadcastGroup
- java.lang.Object
-
- akka.routing.BroadcastGroup
-
- All Implemented Interfaces:
Group,RouterConfig,java.io.Serializable,scala.Equals,scala.Product
public final class BroadcastGroup extends java.lang.Object implements Group, scala.Product, java.io.Serializable
A router group that broadcasts a message to all its routees.The configuration parameter trumps the constructor arguments. This means that if you provide
pathsduring instantiation they will be ignored if the router is defined in the configuration file for the actor being used.param: paths string representation of the actor paths of the routees, messages are sent with
ActorSelectionto these pathsparam: routerDispatcher dispatcher to use for the router head actor, which handles router management messages
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BroadcastGroup(com.typesafe.config.Config config)BroadcastGroup(java.lang.Iterable<java.lang.String> routeePaths)Java APIBroadcastGroup(scala.collection.immutable.Iterable<java.lang.String> paths, java.lang.String routerDispatcher)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.lang.String$lessinit$greater$default$2()static BroadcastGroupapply(scala.collection.immutable.Iterable<java.lang.String> paths, java.lang.String routerDispatcher)static java.lang.Stringapply$default$2()booleancanEqual(java.lang.Object x$1)BroadcastGroupcopy(scala.collection.immutable.Iterable<java.lang.String> paths, java.lang.String routerDispatcher)scala.collection.immutable.Iterable<java.lang.String>copy$default$1()java.lang.Stringcopy$default$2()RoutercreateRouter(ActorSystem system)Create the actual router, responsible for routing messages to routees.booleanequals(java.lang.Object x$1)inthashCode()scala.collection.immutable.Iterable<java.lang.String>paths()scala.collection.immutable.Iterable<java.lang.String>paths(ActorSystem system)intproductArity()java.lang.ObjectproductElement(int x$1)java.lang.StringproductElementName(int x$1)scala.collection.Iterator<java.lang.Object>productIterator()java.lang.StringproductPrefix()java.lang.StringrouterDispatcher()Dispatcher ID to use for running the “head” actor, which handles supervision, death watch and router management messagesjava.lang.StringtoString()static scala.Option<scala.Tuple2<scala.collection.immutable.Iterable<java.lang.String>,java.lang.String>>unapply(BroadcastGroup x$0)BroadcastGroupwithDispatcher(java.lang.String dispatcherId)Setting the dispatcher to be used for the router head actor, which handles router management messages-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface akka.routing.Group
createRouterActor, props, routeeFor
-
Methods inherited from interface akka.routing.RouterConfig
isManagementMessage, routingLogicController, stopRouterWhenAllRouteesRemoved, verifyConfig, withFallback
-
-
-
-
Constructor Detail
-
BroadcastGroup
public BroadcastGroup(scala.collection.immutable.Iterable<java.lang.String> paths, java.lang.String routerDispatcher)
-
BroadcastGroup
public BroadcastGroup(com.typesafe.config.Config config)
-
BroadcastGroup
public BroadcastGroup(java.lang.Iterable<java.lang.String> routeePaths)
Java API- Parameters:
routeePaths- string representation of the actor paths of the routees, messages are sent withActorSelectionto these paths
-
-
Method Detail
-
$lessinit$greater$default$2
public static java.lang.String $lessinit$greater$default$2()
-
apply
public static BroadcastGroup apply(scala.collection.immutable.Iterable<java.lang.String> paths, java.lang.String routerDispatcher)
-
apply$default$2
public static java.lang.String apply$default$2()
-
unapply
public static scala.Option<scala.Tuple2<scala.collection.immutable.Iterable<java.lang.String>,java.lang.String>> unapply(BroadcastGroup x$0)
-
paths
public scala.collection.immutable.Iterable<java.lang.String> paths()
-
routerDispatcher
public java.lang.String routerDispatcher()
Description copied from interface:RouterConfigDispatcher ID to use for running the “head” actor, which handles supervision, death watch and router management messages- Specified by:
routerDispatcherin interfaceRouterConfig
-
paths
public scala.collection.immutable.Iterable<java.lang.String> paths(ActorSystem system)
-
createRouter
public Router createRouter(ActorSystem system)
Description copied from interface:RouterConfigCreate the actual router, responsible for routing messages to routees.- Specified by:
createRouterin interfaceRouterConfig- Parameters:
system- the ActorSystem this router belongs to
-
withDispatcher
public BroadcastGroup withDispatcher(java.lang.String dispatcherId)
Setting the dispatcher to be used for the router head actor, which handles router management messages
-
copy
public BroadcastGroup copy(scala.collection.immutable.Iterable<java.lang.String> paths, java.lang.String routerDispatcher)
-
copy$default$1
public scala.collection.immutable.Iterable<java.lang.String> copy$default$1()
-
copy$default$2
public java.lang.String copy$default$2()
-
productPrefix
public java.lang.String productPrefix()
- Specified by:
productPrefixin interfacescala.Product
-
productArity
public int productArity()
- Specified by:
productArityin interfacescala.Product
-
productElement
public java.lang.Object productElement(int x$1)
- Specified by:
productElementin interfacescala.Product
-
productIterator
public scala.collection.Iterator<java.lang.Object> productIterator()
- Specified by:
productIteratorin interfacescala.Product
-
canEqual
public boolean canEqual(java.lang.Object x$1)
- Specified by:
canEqualin interfacescala.Equals
-
productElementName
public java.lang.String productElementName(int x$1)
- Specified by:
productElementNamein interfacescala.Product
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object x$1)
- Specified by:
equalsin interfacescala.Equals- Overrides:
equalsin classjava.lang.Object
-
-