RemoteRouterConfig

@SerialVersionUID(1L)
final case class RemoteRouterConfig(local: Pool, nodes: Iterable[Address]) extends Pool

akka.routing.RouterConfig implementation for remote deployment on defined target nodes. Delegates other duties to the local akka.routing.Pool, which makes it possible to mix this with the built-in routers such as akka.routing.RoundRobinGroup or custom routers.

Source:
RemoteRouterConfig.scala
trait Product
trait Equals
trait Pool
trait Serializable
class Object
trait Matchable
class Any

Value members

Constructors

def this(local: Pool, nodes: Iterable[Address])
def this(local: Pool, nodes: Array[Address])

Concrete methods

override def createRouter(system: ActorSystem): Router
Definition Classes
Source:
RemoteRouterConfig.scala
Definition Classes
Source:
RemoteRouterConfig.scala
override def newRoutee(routeeProps: Props, context: ActorContext): Routee
Definition Classes
Source:
RemoteRouterConfig.scala
override def nrOfInstances(sys: ActorSystem): Int
Definition Classes
Source:
RemoteRouterConfig.scala
override def resizer: Option[Resizer]
Definition Classes
Source:
RemoteRouterConfig.scala
override def routerDispatcher: String
Definition Classes
Source:
RemoteRouterConfig.scala
override def withFallback(other: RouterConfig): RouterConfig
Definition Classes
Source:
RemoteRouterConfig.scala

Inherited methods

Is 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.

Inherited from:
RouterConfig
Source:
RouterConfig.scala
Inherited from:
Product
def props(routeeProps: Props): Props

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.

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.

Inherited from:
Pool
Source:
RouterConfig.scala

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.

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.

Inherited from:
RouterConfig
Source:
RouterConfig.scala
Definition Classes
Inherited from:
Pool
Source:
RouterConfig.scala

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.

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.

Inherited from:
Pool
Source:
RouterConfig.scala

Check that everything is there which is needed. Called in constructor of RoutedActorRef to fail early.

Check that everything is there which is needed. Called in constructor of RoutedActorRef to fail early.

Inherited from:
RouterConfig
Source:
RouterConfig.scala