object ActorSystem extends Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ActorSystem
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def apply[T](guardianBehavior: Behavior[T], name: String, bootstrapSetup: BootstrapSetup): ActorSystem[T]

    Scala API: Shortcut for creating an actor system with custom bootstrap settings.

    Scala API: Shortcut for creating an actor system with custom bootstrap settings. Same behavior as calling ActorSystem(name, ActorSystemSetup(bootstrapSetup))

  2. def apply[T](guardianBehavior: Behavior[T], name: String, setup: ActorSystemSetup, guardianProps: Props = Props.empty): ActorSystem[T]

    Scala API: Creates a new actor system with the specified name and settings The core actor system settings are defined in BootstrapSetup

  3. def apply[T](guardianBehavior: Behavior[T], name: String, config: Config): ActorSystem[T]

    Scala API: Create an ActorSystem

  4. def apply[T](guardianBehavior: Behavior[T], name: String): ActorSystem[T]

    Scala API: Create an ActorSystem

  5. def create[T](guardianBehavior: Behavior[T], name: String, bootstrapSetup: BootstrapSetup): ActorSystem[T]

    Java API: Shortcut for creating an actor system with custom bootstrap settings.

    Java API: Shortcut for creating an actor system with custom bootstrap settings. Same behavior as calling ActorSystem.create(name, ActorSystemSetup.create(bootstrapSettings))

  6. def create[T](guardianBehavior: Behavior[T], name: String, setups: ActorSystemSetup): ActorSystem[T]

    Java API: Creates a new actor system with the specified name and settings The core actor system settings are defined in BootstrapSetup

  7. def create[T](guardianBehavior: Behavior[T], name: String, config: Config): ActorSystem[T]

    Java API: Create an ActorSystem

  8. def create[T](guardianBehavior: Behavior[T], name: String): ActorSystem[T]

    Java API: Create an ActorSystem

  9. def wrap(system: actor.ActorSystem): ActorSystem[Nothing]

    Wrap an untyped akka.actor.ActorSystem such that it can be used from Akka Typed Behavior.