akka.actor
Interface ExtensionId<T extends Extension>

All Known Implementing Classes:
AbstractExtensionId, ActorDSL.Extension$, CamelExtension, CamelExtension$, Cluster$, ExtensionKey, IOManager$, PeekMailboxExtension$, SerializationExtension, SerializationExtension$, TestKitExtension, TestKitExtension$, TransactorExtension, TransactorExtension$, TypedActor, TypedActor$, ZeroMQExtension$

public interface ExtensionId<T extends Extension>

Identifies an Extension Lookup of Extensions is done by object identity, so the Id must be the same wherever it's used, otherwise you'll get the same extension loaded multiple times.


Method Summary
 T apply(ActorSystem system)
          Returns an instance of the extension identified by this ExtensionId instance.
 T createExtension(ExtendedActorSystem system)
          Is used by Akka to instantiate the Extension identified by this ExtensionId, internal use only.
 T get(ActorSystem system)
          Returns an instance of the extension identified by this ExtensionId instance.
 

Method Detail

apply

T apply(ActorSystem system)
Returns an instance of the extension identified by this ExtensionId instance.


get

T get(ActorSystem system)
Returns an instance of the extension identified by this ExtensionId instance. Java API For extensions written in Scala that are to be used used from Java also, this method should be overridden to get correct return type.

 override def get(system: ActorSystem): TheExtension = super.get(system)
 


createExtension

T createExtension(ExtendedActorSystem system)
Is used by Akka to instantiate the Extension identified by this ExtensionId, internal use only.