Packages

class Settings extends AnyRef

Settings are the overall ActorSystem Settings which also provides a convenient access to the Config object.

For more detailed information about the different possible configuration options, look in the Akka Documentation under "Configuration"

Source
ActorSystem.scala
See also

The Typesafe Config Library API Documentation

Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Settings
  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

Instance Constructors

  1. new Settings(classLoader: ClassLoader, cfg: Config, name: String)
  2. new Settings(classLoader: ClassLoader, cfg: Config, name: String, setup: ActorSystemSetup)

Value Members

  1. final val AddLoggingReceive: Boolean
  2. final val AllowJavaSerialization: Boolean
  3. final val ConfigVersion: String
  4. final val CreationTimeout: Timeout
  5. final val Daemonicity: Boolean
  6. final val DebugAutoReceive: Boolean
  7. final val DebugEventStream: Boolean
  8. final val DebugLifecycle: Boolean
  9. final val DebugRouterMisconfiguration: Boolean
  10. final val DebugUnhandledMessage: Boolean
  11. final val DefaultVirtualNodesFactor: Int
  12. final val EnableAdditionalSerializationBindings: Boolean
  13. final val FsmDebugEvent: Boolean
  14. final val Home: Option[String]
  15. final val JvmExitOnFatalError: Boolean
  16. final val LogConfigOnStart: Boolean
  17. final val LogDeadLetters: Int
  18. final val LogDeadLettersDuringShutdown: Boolean
  19. final val LogLevel: String
  20. final val LoggerStartTimeout: Timeout
  21. final val Loggers: Seq[String]
  22. final val LoggersDispatcher: String
  23. final val LoggingFilter: String
  24. final val ProviderClass: String
  25. final val SchedulerClass: String
  26. final val SerializeAllCreators: Boolean
  27. final val SerializeAllMessages: Boolean
  28. final val StdoutLogLevel: String
  29. final val SupervisorStrategyClass: String
  30. final val UnstartedPushTimeout: Timeout
  31. final val config: Config

    The backing Config of this ActorSystem's Settings

    The backing Config of this ActorSystem's Settings

    See also

    The Typesafe Config Library API Documentation

  32. final val name: String
  33. val setup: ActorSystemSetup
  34. def toString(): String

    Returns the String representation of the Config that this Settings is backed by

    Returns the String representation of the Config that this Settings is backed by

    Definition Classes
    Settings → AnyRef → Any