Package akka.remote
Class AddressUidExtension$
- java.lang.Object
-
- akka.remote.AddressUidExtension$
-
- All Implemented Interfaces:
ExtensionId<AddressUidExtension>
,ExtensionIdProvider
public class AddressUidExtension$ extends java.lang.Object implements ExtensionId<AddressUidExtension>, ExtensionIdProvider
Deprecated.Use ExtendedActorSystem.uid instead. Since 2.8.0.Extension that holds a uid that is assigned as a randomLong
.The uid is intended to be used together with an
Address
to be able to distinguish restarted actor system using the same host and port.
-
-
Field Summary
Fields Modifier and Type Field Description static AddressUidExtension$
MODULE$
Deprecated.Static reference to the singleton instance of this Scala object.
-
Constructor Summary
Constructors Constructor Description AddressUidExtension$()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description AddressUidExtension
createExtension(ExtendedActorSystem system)
Deprecated.Is used by Akka to instantiate the Extension identified by this ExtensionId, internal use only.AddressUidExtension
get(ActorSystem system)
Deprecated.Returns an instance of the extension identified by this ExtensionId instance.AddressUidExtension
get(ClassicActorSystemProvider system)
Deprecated.Returns an instance of the extension identified by this ExtensionId instance.AddressUidExtension$
lookup()
Deprecated.Returns the canonical ExtensionId for this Extension-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface akka.actor.ExtensionId
apply, apply, equals, hashCode
-
-
-
-
Field Detail
-
MODULE$
public static final AddressUidExtension$ MODULE$
Deprecated.Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
get
public AddressUidExtension get(ActorSystem system)
Deprecated.Description copied from interface:ExtensionId
Returns an instance of the extension identified by this ExtensionId instance. Java API For extensions written in Scala that are to be used from Java also, this method should be overridden to get correct return type.override def get(system: ActorSystem): TheExtension = super.get(system)
- Specified by:
get
in interfaceExtensionId<AddressUidExtension>
-
get
public AddressUidExtension get(ClassicActorSystemProvider system)
Deprecated.Description copied from interface:ExtensionId
Returns an instance of the extension identified by this ExtensionId instance. Java API For extensions written in Scala that are to be used from Java also, this method should be overridden to get correct return type.override def get(system: ClassicActorSystemProvider): TheExtension = super.get(system)
- Specified by:
get
in interfaceExtensionId<AddressUidExtension>
-
lookup
public AddressUidExtension$ lookup()
Deprecated.Description copied from interface:ExtensionIdProvider
Returns the canonical ExtensionId for this Extension- Specified by:
lookup
in interfaceExtensionIdProvider
-
createExtension
public AddressUidExtension createExtension(ExtendedActorSystem system)
Deprecated.Description copied from interface:ExtensionId
Is used by Akka to instantiate the Extension identified by this ExtensionId, internal use only.- Specified by:
createExtension
in interfaceExtensionId<AddressUidExtension>
-
-