Packages

final class ActorSystemSetup extends AnyRef

A set of setup settings for programmatic configuration of the actor system.

Constructor is *Internal API*. Use the factory methods ActorSystemSetup#create and akka.actor.Actor#apply to create instances.

Source
ActorSystemSetup.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ActorSystemSetup
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def and[T <: Setup](t: T): ActorSystemSetup

    alias for withSetup allowing for fluent combination of settings: a and b and c, where a, b and c are concrete Setup instances.

    alias for withSetup allowing for fluent combination of settings: a and b and c, where a, b and c are concrete Setup instances. If a setting of the same concrete Setup already is present it will be replaced.

  2. def get[T <: Setup](implicit arg0: ClassTag[T]): Option[T]

    Scala API: Extract a concrete Setup of type T if it is defined in the settings.

  3. def get[T <: Setup](clazz: Class[T]): Optional[T]

    Java API: Extract a concrete Setup of type T if it is defined in the settings.

  4. def toString(): String
    Definition Classes
    ActorSystemSetup → AnyRef → Any
  5. def withSetup[T <: Setup](t: T): ActorSystemSetup

    Add a concrete Setup.

    Add a concrete Setup. If a setting of the same concrete Setup already is present it will be replaced.