case object FromConfig extends FromConfig with Product with Serializable
Wraps a akka.actor.Props to mark the actor as externally configurable to be used with a router. If a akka.actor.Props is not wrapped with FromConfig then the actor will ignore the router part of the deployment section in the configuration.
- Source
- RouterConfig.scala
- Alphabetic
- By Inheritance
- FromConfig
- Product
- Equals
- FromConfig
- Pool
- RouterConfig
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
-   final  def !=(arg0: Any): Boolean- Definition Classes
- AnyRef → Any
 
-   final  def ##: Int- Definition Classes
- AnyRef → Any
 
-   final  def ==(arg0: Any): Boolean- Definition Classes
- AnyRef → Any
 
-   final  def apply(resizer: Option[Resizer] = None, supervisorStrategy: SupervisorStrategy = Pool.defaultSupervisorStrategy, routerDispatcher: String = Dispatchers.DefaultDispatcherId): FromConfig- Annotations
- @inline()
 
-   final  def asInstanceOf[T0]: T0- Definition Classes
- Any
 
-    def clone(): AnyRef- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
 
-    def createRouter(system: ActorSystem): RouterCreate the actual router, responsible for routing messages to routees. Create the actual router, responsible for routing messages to routees. - system
- the ActorSystem this router belongs to 
 - Definition Classes
- FromConfig → RouterConfig
 
-   final  def eq(arg0: AnyRef): Boolean- Definition Classes
- AnyRef
 
-    def equals(arg0: AnyRef): Boolean- Definition Classes
- AnyRef → Any
 
-   final  def getClass(): Class[_ <: AnyRef]- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
 
-    def getInstance: FromConfigJava API: get the singleton instance 
-   final  def isInstanceOf[T0]: Boolean- Definition Classes
- Any
 
-    def isManagementMessage(msg: Any): BooleanIs the message handled by the router head actor or the #routingLogicController actor. Is the message handled by the router head actor or the #routingLogicController actor. - Definition Classes
- RouterConfig
 
-   final  def ne(arg0: AnyRef): Boolean- Definition Classes
- AnyRef
 
-   final  def notify(): Unit- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
 
-   final  def notifyAll(): Unit- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
 
-    def nrOfInstances(sys: ActorSystem): IntInitial number of routee instances Initial number of routee instances - Definition Classes
- FromConfig → Pool
 
-    def productElementName(n: Int): String- Definition Classes
- Product
 
-    def productElementNames: Iterator[String]- Definition Classes
- Product
 
-    def props(): Propsakka.actor.Props for a group router based on the settings defined by this instance. akka.actor.Props for a group router based on the settings defined by this instance. - Definition Classes
- FromConfig
 
-    def props(routeeProps: Props): Propsakka.actor.Props for a pool router based on the settings defined by this instance and the supplied akka.actor.Props for the routees created by the router. akka.actor.Props for a pool router based on the settings defined by this instance and the supplied akka.actor.Props for the routees created by the router. - Definition Classes
- Pool
 
-    val resizer: Option[Resizer]Pool with dynamically resizable number of routees return the akka.routing.Resizer to use. Pool with dynamically resizable number of routees return the akka.routing.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. - Definition Classes
- FromConfig → Pool
 
-    val routerDispatcher: StringDispatcher ID to use for running the “head” actor, which handles supervision, death watch and router management messages Dispatcher ID to use for running the “head” actor, which handles supervision, death watch and router management messages - Definition Classes
- FromConfig → RouterConfig
 
-    def routingLogicController(routingLogic: RoutingLogic): Option[Props]Possibility to define an actor for controlling the routing logic from external stimuli (e.g. Possibility to define an actor for controlling the routing logic from external stimuli (e.g. monitoring metrics). This actor will be a child of the router "head" actor. Management messages not handled by the "head" actor are delegated to this controller actor. - Definition Classes
- RouterConfig
 
-    def stopRouterWhenAllRouteesRemoved: Boolean- Definition Classes
- Pool → RouterConfig
 
-    val supervisorStrategy: SupervisorStrategySupervisorStrategy for the head actor, i.e. SupervisorStrategy for the head actor, i.e. for supervising the routees of the pool. - Definition Classes
- FromConfig → Pool
 
-   final  def synchronized[T0](arg0: => T0): T0- Definition Classes
- AnyRef
 
-   final  def unapply(fc: FromConfig): Option[String]- Annotations
- @inline()
 
-    def usePoolDispatcher: BooleanUse a dedicated dispatcher for the routees of the pool. Use a dedicated dispatcher for the routees of the pool. The dispatcher is defined in 'pool-dispatcher' configuration property in the deployment section of the router. - Definition Classes
- Pool
 
-    def verifyConfig(path: ActorPath): UnitCheck that everything is there which is needed. Check that everything is there which is needed. Called in constructor of RoutedActorRef to fail early. - Definition Classes
- FromConfig → RouterConfig
 
-   final  def wait(arg0: Long, arg1: Int): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
 
-   final  def wait(arg0: Long): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
 
-   final  def wait(): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
 
-    def withDispatcher(dispatcherId: String): FromConfigSetting the dispatcher to be used for the router head actor, which handles supervision, death watch and router management messages. Setting the dispatcher to be used for the router head actor, which handles supervision, death watch and router management messages. - Definition Classes
- FromConfig
 
-    def withFallback(other: RouterConfig): RouterConfigOverridable merge strategy, by default completely prefers this(i.e.Overridable merge strategy, by default completely prefers this(i.e. no merge).- Definition Classes
- RouterConfig
 
-    def withResizer(resizer: Resizer): FromConfigSetting the resizer to be used. Setting the resizer to be used. - Definition Classes
- FromConfig
 
-    def withSupervisorStrategy(strategy: SupervisorStrategy): FromConfigSetting the supervisor strategy to be used for the “head” Router actor. Setting the supervisor strategy to be used for the “head” Router actor. - Definition Classes
- FromConfig