class BatchDispatcherRegistry extends Actor with InjectedActorSupport

Annotations
@Singleton()
Linear Supertypes
InjectedActorSupport, Actor, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BatchDispatcherRegistry
  2. InjectedActorSupport
  3. Actor
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new BatchDispatcherRegistry(actorSystem: ActorSystem, dispatcherFactory: Factory, actionHandler: BatchActionHandler, actionMsgBuilder: BatchActionMsgBuilder)
    Annotations
    @Inject()

Type Members

  1. type Receive = PartialFunction[Any, Unit]
    Definition Classes
    Actor

Value Members

  1. implicit val context: ActorContext
    Definition Classes
    Actor
  2. def injectedChild(create: => Actor, name: String, props: (Props) => Props)(implicit context: ActorContext): ActorRef
    Definition Classes
    InjectedActorSupport
  3. def postRestart(reason: Throwable): Unit
    Definition Classes
    Actor
    Annotations
    @throws(classOf[java.lang.Exception])
  4. def postStop(): Unit
    Definition Classes
    Actor
    Annotations
    @throws(classOf[java.lang.Exception])
  5. def preRestart(reason: Throwable, message: Option[Any]): Unit
    Definition Classes
    Actor
    Annotations
    @throws(classOf[java.lang.Exception])
  6. def preStart(): Unit
    Definition Classes
    Actor
    Annotations
    @throws(classOf[java.lang.Exception])
  7. def receive: Receive
    Definition Classes
    BatchDispatcherRegistry → Actor
  8. implicit final val self: ActorRef
    Definition Classes
    Actor
  9. final def sender(): ActorRef
    Definition Classes
    Actor
  10. val supervisorStrategy: OneForOneStrategy

    Override this Actor's supervisor strategy: in case of an Exception resume child actor without stopping.

    Override this Actor's supervisor strategy: in case of an Exception resume child actor without stopping. This means that even if a BatchDispatcher throws an Exceptions it continues running and keeps its internal state (incl registered channels).

    Definition Classes
    BatchDispatcherRegistry → Actor
  11. def unhandled(message: Any): Unit
    Definition Classes
    Actor