Package akka.actor

Class UntypedActor

    • Constructor Detail

      • UntypedActor

        public UntypedActor()
        Deprecated.
    • Method Detail

      • akka$actor$Actor$_setter_$self_$eq

        protected final void akka$actor$Actor$_setter_$self_$eq​(ActorRef x$1)
        Deprecated.
        Description copied from interface: Actor
        The 'self' field holds the ActorRef for this actor.

        Can be used to send messages to itself:
         self ! message
         
        Specified by:
        akka$actor$Actor$_setter_$self_$eq in interface Actor
        Parameters:
        x$1 - (undocumented)
      • context

        public ActorContext context()
        Deprecated.
        Description copied from interface: Actor
        Scala API: Stores the context for this actor, including self, and sender. It is implicit to support operations such as forward.

        WARNING: Only valid within the Actor itself, so do not close over it and publish it to other threads!

        ActorContext is the Scala API. getContext returns a AbstractActor.ActorContext, which is the Java API of the actor context.

        Specified by:
        context in interface Actor
        Returns:
        (undocumented)
      • getContext

        public UntypedActorContext getContext()
        Deprecated.
        Returns this UntypedActor's UntypedActorContext The UntypedActorContext is not thread safe so do not expose it outside of the UntypedActor.
        Returns:
        (undocumented)
      • getSelf

        public ActorRef getSelf()
        Deprecated.
        Returns the ActorRef for this actor.
        Returns:
        (undocumented)
      • getSender

        public ActorRef getSender()
        Deprecated.
        The reference sender Actor of the currently processed message. This is always a legal destination to send to, even if there is no logical recipient for the reply, in which case it will be sent to the dead letter mailbox.
        Returns:
        (undocumented)
      • onReceive

        public abstract void onReceive​(java.lang.Object message)
                                throws java.lang.Throwable
        Deprecated.
        Throws:
        java.lang.Throwable
      • postRestart

        public void postRestart​(java.lang.Throwable reason)
                         throws java.lang.Exception
        Deprecated.
        User overridable callback: By default it calls preStart().

        Is called right AFTER restart on the newly created Actor to allow reinitialization after an Actor crash.
        Specified by:
        postRestart in interface Actor
        Parameters:
        reason - (undocumented)
        Throws:
        java.lang.Exception
      • postStop

        public void postStop()
                      throws java.lang.Exception
        Deprecated.
        User overridable callback.

        Is called asynchronously after 'actor.stop()' is invoked. Empty default implementation.
        Specified by:
        postStop in interface Actor
        Throws:
        java.lang.Exception
      • preRestart

        public void preRestart​(java.lang.Throwable reason,
                               scala.Option<java.lang.Object> message)
                        throws java.lang.Exception
        Deprecated.
        User overridable callback: '''By default it disposes of all children and then calls postStop().'''

        Is called on a crashed Actor right BEFORE it is restarted to allow clean up of resources before Actor is terminated.
        Specified by:
        preRestart in interface Actor
        Parameters:
        reason - (undocumented)
        message - (undocumented)
        Throws:
        java.lang.Exception
      • preStart

        public void preStart()
                      throws java.lang.Exception
        Deprecated.
        User overridable callback.

        Is called when an Actor is started. Actor are automatically started asynchronously when created. Empty default implementation.
        Specified by:
        preStart in interface Actor
        Throws:
        java.lang.Exception
      • receive

        public final scala.PartialFunction<java.lang.Object,​scala.runtime.BoxedUnit> receive()
        Deprecated.
        Description copied from interface: Actor
        Scala API: This defines the initial actor behavior, it must return a partial function with the actor logic.
        Specified by:
        receive in interface Actor
        Returns:
        (undocumented)
      • self

        public final ActorRef self()
        Deprecated.
        Description copied from interface: Actor
        The 'self' field holds the ActorRef for this actor.

        Can be used to send messages to itself:
         self ! message
         
        Specified by:
        self in interface Actor
        Returns:
        (undocumented)
      • supervisorStrategy

        public SupervisorStrategy supervisorStrategy()
        Deprecated.
        User overridable definition the strategy to use for supervising child actors.
        Specified by:
        supervisorStrategy in interface Actor
        Returns:
        (undocumented)