akka.actor
Class LocalScope$

java.lang.Object
  extended by akka.actor.LocalScope
      extended by akka.actor.LocalScope$
All Implemented Interfaces:
Scope, java.io.Serializable, scala.Equals, scala.Product

public class LocalScope$
extends LocalScope
implements scala.Product, scala.Serializable

The Local Scope is the default one, which is assumed on all deployments which do not set a different scope. It is also the only scope handled by the LocalActorRefProvider.

See Also:
Serialized Form

Field Summary
static LocalScope$ MODULE$
          Static reference to the singleton instance of this Scala object.
 
Constructor Summary
LocalScope$()
           
 
Method Summary
 LocalScope$ getInstance()
          Java API: get the singleton instance
 Scope withFallback(Scope other)
          When merging Deploy instances using withFallback() on the left one, this is propagated to “merging” scopes in the same way.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface scala.Product
productArity, productElement, productIterator, productPrefix
 
Methods inherited from interface scala.Equals
canEqual, equals
 

Field Detail

MODULE$

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

Constructor Detail

LocalScope$

public LocalScope$()
Method Detail

getInstance

public LocalScope$ getInstance()
Java API: get the singleton instance

Overrides:
getInstance in class LocalScope
Returns:
(undocumented)

withFallback

public Scope withFallback(Scope other)
Description copied from interface: Scope
When merging Deploy instances using withFallback() on the left one, this is propagated to “merging” scopes in the same way. The setup is biased towards preferring the callee over the argument, i.e. a.withFallback(b) is called expecting that a should in general take precedence.

Specified by:
withFallback in interface Scope
Overrides:
withFallback in class LocalScope
Parameters:
other - (undocumented)
Returns:
(undocumented)