Package akka.actor

Class TypedActor$

  • All Implemented Interfaces:
    ExtensionId<TypedActorExtension>, ExtensionIdProvider

    public class TypedActor$
    extends java.lang.Object
    implements ExtensionId<TypedActorExtension>, ExtensionIdProvider
    Returns a contextual TypedActorFactory of this extension, this means that any TypedActors created by this TypedActorExtension will be children to the specified context, this allows for creating hierarchies of TypedActors. Do _not_ let this instance escape the TypedActor since that will not be thread-safe.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static TypedActor$ MODULE$
      Static reference to the singleton instance of this Scala object.
    • Constructor Summary

      Constructors 
      Constructor Description
      TypedActor$()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      TypedActorFactory apply​(ActorContext context)
      Returns a contextual TypedActorFactory of this extension, this means that any TypedActors created by this TypedActorExtension will be children to the specified context, this allows for creating hierarchies of TypedActors.
      ActorContext context()
      Returns the ActorContext (for a TypedActor) when inside a method call in a TypedActor.
      TypedActorExtension createExtension​(ExtendedActorSystem system)
      Is used by Akka to instantiate the Extension identified by this ExtensionId, internal use only.
      scala.concurrent.ExecutionContextExecutor dispatcher()
      Returns the default dispatcher (for a TypedActor) when inside a method call in a TypedActor.
      TypedActorFactory get​(ActorContext context)
      Returns a contextual TypedActorFactory of this extension, this means that any TypedActors created by this TypedActorExtension will be children to the specified context, this allows for creating hierarchies of TypedActors.
      TypedActorExtension get​(ActorSystem system)
      Returns an instance of the extension identified by this ExtensionId instance.
      TypedActorExtension get​(ClassicActorSystemProvider system)
      Returns an instance of the extension identified by this ExtensionId instance.
      TypedActor$ lookup()  
      <T> T self()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • MODULE$

        public static final TypedActor$ MODULE$
        Static reference to the singleton instance of this Scala object.
    • Constructor Detail

      • TypedActor$

        public TypedActor$()
    • Method Detail

      • get

        public TypedActorExtension get​(ActorSystem system)
        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 interface ExtensionId<TypedActorExtension>
        Parameters:
        system - (undocumented)
        Returns:
        (undocumented)
      • get

        public TypedActorExtension get​(ClassicActorSystemProvider system)
        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 interface ExtensionId<TypedActorExtension>
        Parameters:
        system - (undocumented)
        Returns:
        (undocumented)
      • apply

        public TypedActorFactory apply​(ActorContext context)
        Returns a contextual TypedActorFactory of this extension, this means that any TypedActors created by this TypedActorExtension will be children to the specified context, this allows for creating hierarchies of TypedActors. Do _not_ let this instance escape the TypedActor since that will not be thread-safe.
        Parameters:
        context - (undocumented)
        Returns:
        (undocumented)
      • get

        public TypedActorFactory get​(ActorContext context)
        Returns a contextual TypedActorFactory of this extension, this means that any TypedActors created by this TypedActorExtension will be children to the specified context, this allows for creating hierarchies of TypedActors. Do _not_ let this instance escape the TypedActor since that will not be thread-safe.

        Java API

        Parameters:
        context - (undocumented)
        Returns:
        (undocumented)
      • self

        public <T> T self()
      • context

        public ActorContext context()
        Returns the ActorContext (for a TypedActor) when inside a method call in a TypedActor.
        Returns:
        (undocumented)
      • dispatcher

        public scala.concurrent.ExecutionContextExecutor dispatcher()
        Returns the default dispatcher (for a TypedActor) when inside a method call in a TypedActor.
        Returns:
        (undocumented)