akka.actor
Class ActorSystem.Settings

java.lang.Object
  extended by akka.actor.ActorSystem.Settings
Enclosing class:
ActorSystem

public static class ActorSystem.Settings
extends java.lang.Object

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"

See Also:
The Typesafe Config Library API Documentation

Constructor Summary
ActorSystem.Settings(java.lang.ClassLoader classLoader, com.typesafe.config.Config cfg, java.lang.String name)
           
 
Method Summary
 boolean AddLoggingReceive()
           
 com.typesafe.config.Config config()
          The backing Config of this ActorSystem's Settings
 java.lang.String ConfigVersion()
           
 Timeout CreationTimeout()
           
 boolean Daemonicity()
           
 boolean DebugAutoReceive()
           
 boolean DebugEventStream()
           
 boolean DebugLifecycle()
           
 boolean DebugRouterMisconfiguration()
           
 boolean DebugUnhandledMessage()
           
 int DefaultVirtualNodesFactor()
           
 scala.collection.Seq<java.lang.String> EventHandlers()
           
 Timeout EventHandlerStartTimeout()
           
 boolean FsmDebugEvent()
           
 scala.Option<java.lang.String> Home()
           
 boolean JvmExitOnFatalError()
           
 boolean LogConfigOnStart()
           
 java.lang.String LogLevel()
           
 java.lang.String name()
           
 java.lang.String ProviderClass()
           
 scala.concurrent.duration.FiniteDuration SchedulerTickDuration()
           
 int SchedulerTicksPerWheel()
           
 boolean SerializeAllCreators()
           
 boolean SerializeAllMessages()
           
 java.lang.String StdoutLogLevel()
           
 java.lang.String SupervisorStrategyClass()
           
 java.lang.String toString()
          Returns the String representation of the Config that this Settings is backed by
 Timeout UnstartedPushTimeout()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ActorSystem.Settings

public ActorSystem.Settings(java.lang.ClassLoader classLoader,
                            com.typesafe.config.Config cfg,
                            java.lang.String name)
Method Detail

name

public final java.lang.String name()

config

public final com.typesafe.config.Config config()
The backing Config of this ActorSystem's Settings

See Also:
The Typesafe Config Library API Documentation

ConfigVersion

public final java.lang.String ConfigVersion()

ProviderClass

public final java.lang.String ProviderClass()

SupervisorStrategyClass

public final java.lang.String SupervisorStrategyClass()

CreationTimeout

public final Timeout CreationTimeout()

UnstartedPushTimeout

public final Timeout UnstartedPushTimeout()

SerializeAllMessages

public final boolean SerializeAllMessages()

SerializeAllCreators

public final boolean SerializeAllCreators()

LogLevel

public final java.lang.String LogLevel()

StdoutLogLevel

public final java.lang.String StdoutLogLevel()

EventHandlers

public final scala.collection.Seq<java.lang.String> EventHandlers()

EventHandlerStartTimeout

public final Timeout EventHandlerStartTimeout()

LogConfigOnStart

public final boolean LogConfigOnStart()

AddLoggingReceive

public final boolean AddLoggingReceive()

DebugAutoReceive

public final boolean DebugAutoReceive()

DebugLifecycle

public final boolean DebugLifecycle()

FsmDebugEvent

public final boolean FsmDebugEvent()

DebugEventStream

public final boolean DebugEventStream()

DebugUnhandledMessage

public final boolean DebugUnhandledMessage()

DebugRouterMisconfiguration

public final boolean DebugRouterMisconfiguration()

Home

public final scala.Option<java.lang.String> Home()

SchedulerTickDuration

public final scala.concurrent.duration.FiniteDuration SchedulerTickDuration()

SchedulerTicksPerWheel

public final int SchedulerTicksPerWheel()

Daemonicity

public final boolean Daemonicity()

JvmExitOnFatalError

public final boolean JvmExitOnFatalError()

DefaultVirtualNodesFactor

public final int DefaultVirtualNodesFactor()

toString

public java.lang.String toString()
Returns the String representation of the Config that this Settings is backed by

Overrides:
toString in class java.lang.Object