object DispatcherSelector extends Serializable

Factories for DispatcherSelectors which describe which thread pool shall be used to run the actor to which this configuration is applied. Se the individual factory methods for details on the options.

The default configuration if none of these options are present is to run the actor on the default ActorSystem executor.

Source
Props.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DispatcherSelector
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def blocking(): DispatcherSelector

    Run the actor on the default blocking dispatcher that is configured under default-blocking-io-dispatcher

  2. def default(): DispatcherSelector

    Scala API: Run the actor on the default ActorSystem executor.

  3. def defaultDispatcher(): DispatcherSelector

    Java API: Run the actor on the default ActorSystem executor.

  4. def fromConfig(path: String): DispatcherSelector

    Look up an executor definition in the ActorSystem configuration.

    Look up an executor definition in the ActorSystem configuration. ExecutorServices created in this fashion will be shut down when the ActorSystem terminates.