Package akka.actor
Class LocalScope$
- java.lang.Object
-
- akka.actor.LocalScope
-
- akka.actor.LocalScope$
-
- All Implemented Interfaces:
Scope
,java.io.Serializable
,scala.Equals
,scala.Product
public class LocalScope$ extends LocalScope implements scala.Product, java.io.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
Fields Modifier and Type Field Description static LocalScope$
MODULE$
Static reference to the singleton instance of this Scala object.
-
Constructor Summary
Constructors Constructor Description LocalScope$()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
canEqual(java.lang.Object x$1)
LocalScope$
getInstance()
Java API: get the singleton instanceint
hashCode()
int
productArity()
java.lang.Object
productElement(int x$1)
scala.collection.Iterator<java.lang.Object>
productIterator()
java.lang.String
productPrefix()
java.lang.String
toString()
Scope
withFallback(Scope other)
-
Methods inherited from class akka.actor.LocalScope
equals, productElementName, productElementNames
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface akka.actor.Scope
withFallback
-
-
-
-
Field Detail
-
MODULE$
public static final LocalScope$ MODULE$
Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
getInstance
public LocalScope$ getInstance()
Java API: get the singleton instance- Overrides:
getInstance
in classLocalScope
-
withFallback
public Scope withFallback(Scope other)
- Overrides:
withFallback
in classLocalScope
-
productPrefix
public java.lang.String productPrefix()
- Specified by:
productPrefix
in interfacescala.Product
- Overrides:
productPrefix
in classLocalScope
-
productArity
public int productArity()
- Specified by:
productArity
in interfacescala.Product
- Overrides:
productArity
in classLocalScope
-
productElement
public java.lang.Object productElement(int x$1)
- Specified by:
productElement
in interfacescala.Product
- Overrides:
productElement
in classLocalScope
-
productIterator
public scala.collection.Iterator<java.lang.Object> productIterator()
- Specified by:
productIterator
in interfacescala.Product
- Overrides:
productIterator
in classLocalScope
-
canEqual
public boolean canEqual(java.lang.Object x$1)
- Specified by:
canEqual
in interfacescala.Equals
- Overrides:
canEqual
in classLocalScope
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classLocalScope
-
toString
public java.lang.String toString()
- Overrides:
toString
in classLocalScope
-
-