akka.actor
Class ActorSystem$

java.lang.Object
  extended by akka.actor.ActorSystem$

public class ActorSystem$
extends java.lang.Object


Field Summary
static ActorSystem$ MODULE$
          Static reference to the singleton instance of this Scala object.
 
Constructor Summary
ActorSystem$()
           
 
Method Summary
 ActorSystem apply()
          Creates a new ActorSystem with the name "default", obtains the current ClassLoader by first inspecting the current threads' getContextClassLoader, then tries to walk the stack to find the callers class loader, then falls back to the ClassLoader associated with the ActorSystem class.
 ActorSystem apply(java.lang.String name)
          Creates a new ActorSystem with the specified name, obtains the current ClassLoader by first inspecting the current threads' getContextClassLoader, then tries to walk the stack to find the callers class loader, then falls back to the ClassLoader associated with the ActorSystem class.
 ActorSystem apply(java.lang.String name, com.typesafe.config.Config config)
          Creates a new ActorSystem with the name "default", and the specified Config, then obtains the current ClassLoader by first inspecting the current threads' getContextClassLoader, then tries to walk the stack to find the callers class loader, then falls back to the ClassLoader associated with the ActorSystem class.
 ActorSystem apply(java.lang.String name, com.typesafe.config.Config config, java.lang.ClassLoader classLoader)
          Creates a new ActorSystem with the name "default", the specified Config, and specified ClassLoader
 ActorSystem create()
          Creates a new ActorSystem with the name "default", obtains the current ClassLoader by first inspecting the current threads' getContextClassLoader, then tries to walk the stack to find the callers class loader, then falls back to the ClassLoader associated with the ActorSystem class.
 ActorSystem create(java.lang.String name)
          Creates a new ActorSystem with the specified name, obtains the current ClassLoader by first inspecting the current threads' getContextClassLoader, then tries to walk the stack to find the callers class loader, then falls back to the ClassLoader associated with the ActorSystem class.
 ActorSystem create(java.lang.String name, com.typesafe.config.Config config)
          Creates a new ActorSystem with the name "default", and the specified Config, then obtains the current ClassLoader by first inspecting the current threads' getContextClassLoader, then tries to walk the stack to find the callers class loader, then falls back to the ClassLoader associated with the ActorSystem class.
 ActorSystem create(java.lang.String name, com.typesafe.config.Config config, java.lang.ClassLoader classLoader)
          Creates a new ActorSystem with the name "default", the specified Config, and specified ClassLoader
 scala.Option<java.lang.String> EnvHome()
           
 scala.Option<java.lang.String> GlobalHome()
           
 scala.Option<java.lang.String> SystemHome()
           
 java.lang.String Version()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

MODULE$

public static final ActorSystem$ MODULE$
Static reference to the singleton instance of this Scala object.

Constructor Detail

ActorSystem$

public ActorSystem$()
Method Detail

Version

public java.lang.String Version()

EnvHome

public scala.Option<java.lang.String> EnvHome()

SystemHome

public scala.Option<java.lang.String> SystemHome()

GlobalHome

public scala.Option<java.lang.String> GlobalHome()

create

public ActorSystem create()
Creates a new ActorSystem with the name "default", obtains the current ClassLoader by first inspecting the current threads' getContextClassLoader, then tries to walk the stack to find the callers class loader, then falls back to the ClassLoader associated with the ActorSystem class. Then it loads the default reference configuration using the ClassLoader.


create

public ActorSystem create(java.lang.String name)
Creates a new ActorSystem with the specified name, obtains the current ClassLoader by first inspecting the current threads' getContextClassLoader, then tries to walk the stack to find the callers class loader, then falls back to the ClassLoader associated with the ActorSystem class. Then it loads the default reference configuration using the ClassLoader.


create

public ActorSystem create(java.lang.String name,
                          com.typesafe.config.Config config)
Creates a new ActorSystem with the name "default", and the specified Config, then obtains the current ClassLoader by first inspecting the current threads' getContextClassLoader, then tries to walk the stack to find the callers class loader, then falls back to the ClassLoader associated with the ActorSystem class.

See Also:
The Typesafe Config Library API Documentation

create

public ActorSystem create(java.lang.String name,
                          com.typesafe.config.Config config,
                          java.lang.ClassLoader classLoader)
Creates a new ActorSystem with the name "default", the specified Config, and specified ClassLoader

See Also:
The Typesafe Config Library API Documentation

apply

public ActorSystem apply()
Creates a new ActorSystem with the name "default", obtains the current ClassLoader by first inspecting the current threads' getContextClassLoader, then tries to walk the stack to find the callers class loader, then falls back to the ClassLoader associated with the ActorSystem class. Then it loads the default reference configuration using the ClassLoader.


apply

public ActorSystem apply(java.lang.String name)
Creates a new ActorSystem with the specified name, obtains the current ClassLoader by first inspecting the current threads' getContextClassLoader, then tries to walk the stack to find the callers class loader, then falls back to the ClassLoader associated with the ActorSystem class. Then it loads the default reference configuration using the ClassLoader.


apply

public ActorSystem apply(java.lang.String name,
                         com.typesafe.config.Config config)
Creates a new ActorSystem with the name "default", and the specified Config, then obtains the current ClassLoader by first inspecting the current threads' getContextClassLoader, then tries to walk the stack to find the callers class loader, then falls back to the ClassLoader associated with the ActorSystem class.

See Also:
The Typesafe Config Library API Documentation

apply

public ActorSystem apply(java.lang.String name,
                         com.typesafe.config.Config config,
                         java.lang.ClassLoader classLoader)
Creates a new ActorSystem with the name "default", the specified Config, and specified ClassLoader

See Also:
The Typesafe Config Library API Documentation