Interface ActorContext<T>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      <Req,​Res>
      void
      ask​(java.lang.Class<Res> resClass, RecipientRef<Req> target, java.time.Duration responseTimeout, java.util.function.Function<ActorRef<Res>,​Req> createRequest, java.util.function.BiFunction<Res,​java.lang.Throwable,​T> applyToResponse)
      Perform a single request-response message interaction with another actor, and transform the messages back to the protocol of this actor.
      ActorContext<T> asScala()
      Get the scaladsl of this ActorContext.
      void cancelReceiveTimeout()
      Cancel the sending of receive timeout notifications.
      java.util.Optional<ActorRef<java.lang.Void>> getChild​(java.lang.String name)
      The named child Actor if it is alive.
      java.util.List<ActorRef<java.lang.Void>> getChildren()
      The list of child Actors created by this Actor during its lifetime that are still alive, in no particular order.
      scala.concurrent.ExecutionContextExecutor getExecutionContext()
      This Actor&rsquo;s execution context.
      Logger getLog()
      An actor specific logger
      ActorRef<T> getSelf()
      The identity of this Actor, bound to the lifecycle of this Actor instance.
      ActorSystem<java.lang.Void> getSystem()
      The ActorSystem to which this Actor belongs.
      <U> ActorRef<U> messageAdapter​(java.lang.Class<U> messageClass, java.util.function.Function<U,​T> f)
      Create a message adapter that will convert or wrap messages such that other Actor&rsquo;s protocols can be ingested by this Actor.
      <Value> void pipeToSelf​(java.util.concurrent.CompletionStage<Value> future, java.util.function.BiFunction<Value,​java.lang.Throwable,​T> applyToResult)
      Sends the result of the given CompletionStage to this Actor (&ldquo;self&rdquo;), after adapted it with the given function.
      <U> Cancellable scheduleOnce​(java.time.Duration delay, ActorRef<U> target, U msg)
      Schedule the sending of the given message to the given target Actor after the given time period has elapsed.
      void setLoggerClass​(java.lang.Class<?> clazz)
      Replace the current logger (or initialize a new logger if the logger was not touched before) with one that has ghe given class as logging class.
      void setReceiveTimeout​(java.time.Duration timeout, T msg)
      Schedule the sending of a notification in case no other message is received during the given period of time.
      <U> ActorRef<U> spawn​(Behavior<U> behavior, java.lang.String name)
      Create a child Actor from the given Behavior and with the given name.
      <U> ActorRef<U> spawn​(Behavior<U> behavior, java.lang.String name, Props props)
      Create a child Actor from the given Behavior and with the given name.
      <U> ActorRef<U> spawnAnonymous​(Behavior<U> behavior)
      Create a child Actor from the given Behavior under a randomly chosen name.
      <U> ActorRef<U> spawnAnonymous​(Behavior<U> behavior, Props props)
      Create a child Actor from the given Behavior under a randomly chosen name.
      <U> void stop​(ActorRef<U> child)
      Force the child Actor under the given name to terminate after it finishes processing its current message.
      <U> void unwatch​(ActorRef<U> other)
      Revoke the registration established by watch.
      <U> void watch​(ActorRef<U> other)
      Register for Terminated notification once the Actor identified by the given ActorRef terminates.
      <U> void watchWith​(ActorRef<U> other, T msg)
      Register for termination notification with a custom message once the Actor identified by the given ActorRef terminates.
    • Method Detail

      • asScala

        ActorContext<T> asScala()
        Get the scaladsl of this ActorContext.

        This method is thread-safe and can be called from other threads than the ordinary actor message processing thread, such as CompletionStage callbacks.

        Specified by:
        asScala in interface TypedActorContext<T>
        Returns:
        (undocumented)
      • ask

        <Req,​Res> void ask​(java.lang.Class<Res> resClass,
                                 RecipientRef<Req> target,
                                 java.time.Duration responseTimeout,
                                 java.util.function.Function<ActorRef<Res>,​Req> createRequest,
                                 java.util.function.BiFunction<Res,​java.lang.Throwable,​T> applyToResponse)
        Perform a single request-response message interaction with another actor, and transform the messages back to the protocol of this actor.

        The interaction has a timeout (to avoid a resource leak). If the timeout hits without any response it will be passed as an TimeoutException to the applyToResponse function.

        For other messaging patterns with other actors, see messageAdapter(java.lang.Class<U>, java.util.function.Function<U, T>).

        This method is thread-safe and can be called from other threads than the ordinary actor message processing thread, such as CompletionStage callbacks.

        Parameters:
        createRequest - A function that creates a message for the other actor, containing the provided ActorRef[Res] that the other actor can send a message back through.
        applyToResponse - Transforms the response from the target into a message this actor understands. Will be invoked with either the response message or an AskTimeoutException failed or potentially another exception if the remote actor is untyped and sent a Status.Failure as response. The returned message of type T is then fed into this actor as a message. Should be a pure function but is executed inside the actor when the response arrives so can safely touch the actor internals. If this function throws an exception it is just as if the normal message receiving logic would throw.

        resClass - (undocumented)
        target - (undocumented)
        responseTimeout - (undocumented)
      • cancelReceiveTimeout

        void cancelReceiveTimeout()
        Cancel the sending of receive timeout notifications.

        *Warning*: This method is not thread-safe and must not be accessed from threads other than the ordinary actor message processing thread, such as CompletionStage callbacks.

      • getChild

        java.util.Optional<ActorRef<java.lang.Void>> getChild​(java.lang.String name)
        The named child Actor if it is alive.

        *Warning*: This method is not thread-safe and must not be accessed from threads other than the ordinary actor message processing thread, such as CompletionStage callbacks.

        Parameters:
        name - (undocumented)
        Returns:
        (undocumented)
      • getChildren

        java.util.List<ActorRef<java.lang.Void>> getChildren()
        The list of child Actors created by this Actor during its lifetime that are still alive, in no particular order.

        *Warning*: This method is not thread-safe and must not be accessed from threads other than the ordinary actor message processing thread, such as CompletionStage callbacks.

        Returns:
        (undocumented)
      • getExecutionContext

        scala.concurrent.ExecutionContextExecutor getExecutionContext()
        This Actor&rsquo;s execution context. It can be used to run asynchronous tasks like Future combinators.

        This method is thread-safe and can be called from other threads than the ordinary actor message processing thread, such as CompletionStage callbacks.

        Returns:
        (undocumented)
      • getLog

        Logger getLog()
        An actor specific logger

        *Warning*: This method is not thread-safe and must not be accessed from threads other than the ordinary actor message processing thread, such as CompletionStage callbacks.

        Returns:
        (undocumented)
      • getSelf

        ActorRef<T> getSelf()
        The identity of this Actor, bound to the lifecycle of this Actor instance. An Actor with the same name that lives before or after this instance will have a different ActorRef.

        This method is thread-safe and can be called from other threads than the ordinary actor message processing thread, such as CompletionStage callbacks.

        Returns:
        (undocumented)
      • getSystem

        ActorSystem<java.lang.Void> getSystem()
        The ActorSystem to which this Actor belongs.

        This method is thread-safe and can be called from other threads than the ordinary actor message processing thread, such as CompletionStage callbacks.

        Returns:
        (undocumented)
      • messageAdapter

        <U> ActorRef<U> messageAdapter​(java.lang.Class<U> messageClass,
                                       java.util.function.Function<U,​T> f)
        Create a message adapter that will convert or wrap messages such that other Actor&rsquo;s protocols can be ingested by this Actor.

        You can register several message adapters for different message classes. It's only possible to have one message adapter per message class to make sure that the number of adapters are not growing unbounded if registered repeatedly. That also means that a registered adapter will replace an existing adapter for the same message class.

        A message adapter will be used if the message class matches the given class or is a subclass thereof. The registered adapters are tried in reverse order of their registration order, i.e. the last registered first.

        A message adapter (and the returned ActorRef) has the same lifecycle as this actor. It's recommended to register the adapters in a top level Behaviors.setup or constructor of AbstractBehavior but it's possible to register them later also if needed. Message adapters don't have to be stopped since they consume no resources other than an entry in an internal Map and the number of adapters are bounded since it's only possible to have one per message class.

        The function is running in this actor and can safely access state of it.

        *Warning*: This method is not thread-safe and must not be accessed from threads other than the ordinary actor message processing thread, such as CompletionStage callbacks.

        Parameters:
        messageClass - (undocumented)
        f - (undocumented)
        Returns:
        (undocumented)
      • pipeToSelf

        <Value> void pipeToSelf​(java.util.concurrent.CompletionStage<Value> future,
                                java.util.function.BiFunction<Value,​java.lang.Throwable,​T> applyToResult)
        Sends the result of the given CompletionStage to this Actor (&ldquo;self&rdquo;), after adapted it with the given function.

        This method is thread-safe and can be called from other threads than the ordinary actor message processing thread, such as CompletionStage callbacks.

        Parameters:
        future - (undocumented)
        applyToResult - (undocumented)
      • scheduleOnce

        <U> Cancellable scheduleOnce​(java.time.Duration delay,
                                     ActorRef<U> target,
                                     U msg)
        Schedule the sending of the given message to the given target Actor after the given time period has elapsed. The scheduled action can be cancelled by invoking Cancellable.cancel() on the returned handle.

        For scheduling messages to the actor itself, use Behaviors.withTimers

        This method is thread-safe and can be called from other threads than the ordinary actor message processing thread, such as CompletionStage callbacks.

        Parameters:
        delay - (undocumented)
        target - (undocumented)
        msg - (undocumented)
        Returns:
        (undocumented)
      • setLoggerClass

        void setLoggerClass​(java.lang.Class<?> clazz)
        Replace the current logger (or initialize a new logger if the logger was not touched before) with one that has ghe given class as logging class. Logger source will be actor path.

        *Warning*: This method is not thread-safe and must not be accessed from threads other than the ordinary actor message processing thread, such as CompletionStage callbacks.

        Parameters:
        clazz - (undocumented)
      • setReceiveTimeout

        void setReceiveTimeout​(java.time.Duration timeout,
                               T msg)
        Schedule the sending of a notification in case no other message is received during the given period of time. The timeout starts anew with each received message. Use cancelReceiveTimeout to switch off this mechanism.

        *Warning*: This method is not thread-safe and must not be accessed from threads other than the ordinary actor message processing thread, such as CompletionStage callbacks.

        Parameters:
        timeout - (undocumented)
        msg - (undocumented)
      • spawn

        <U> ActorRef<U> spawn​(Behavior<U> behavior,
                              java.lang.String name)
        Create a child Actor from the given Behavior and with the given name.

        *Warning*: This method is not thread-safe and must not be accessed from threads other than the ordinary actor message processing thread, such as CompletionStage callbacks.

        Parameters:
        behavior - (undocumented)
        name - (undocumented)
        Returns:
        (undocumented)
      • spawn

        <U> ActorRef<U> spawn​(Behavior<U> behavior,
                              java.lang.String name,
                              Props props)
        Create a child Actor from the given Behavior and with the given name.

        *Warning*: This method is not thread-safe and must not be accessed from threads other than the ordinary actor message processing thread, such as CompletionStage callbacks.

        Parameters:
        behavior - (undocumented)
        name - (undocumented)
        props - (undocumented)
        Returns:
        (undocumented)
      • spawnAnonymous

        <U> ActorRef<U> spawnAnonymous​(Behavior<U> behavior)
        Create a child Actor from the given Behavior under a randomly chosen name. It is good practice to name Actors wherever practical.

        *Warning*: This method is not thread-safe and must not be accessed from threads other than the ordinary actor message processing thread, such as CompletionStage callbacks.

        Parameters:
        behavior - (undocumented)
        Returns:
        (undocumented)
      • spawnAnonymous

        <U> ActorRef<U> spawnAnonymous​(Behavior<U> behavior,
                                       Props props)
        Create a child Actor from the given Behavior under a randomly chosen name. It is good practice to name Actors wherever practical.

        *Warning*: This method is not thread-safe and must not be accessed from threads other than the ordinary actor message processing thread, such as CompletionStage callbacks.

        Parameters:
        behavior - (undocumented)
        props - (undocumented)
        Returns:
        (undocumented)
      • stop

        <U> void stop​(ActorRef<U> child)
        Force the child Actor under the given name to terminate after it finishes processing its current message. Nothing happens if the ActorRef is a child that is already stopped.

        *Warning*: This method is not thread-safe and must not be accessed from threads other than the ordinary actor message processing thread, such as CompletionStage callbacks.

        Parameters:
        child - (undocumented)
        Throws:
        java.lang.IllegalArgumentException - if the given actor ref is not a direct child of this actor
      • unwatch

        <U> void unwatch​(ActorRef<U> other)
        Revoke the registration established by watch. A Terminated notification will not subsequently be received for the referenced Actor.

        *Warning*: This method is not thread-safe and must not be accessed from threads other than the ordinary actor message processing thread, such as CompletionStage callbacks.

        Parameters:
        other - (undocumented)
      • watch

        <U> void watch​(ActorRef<U> other)
        Register for Terminated notification once the Actor identified by the given ActorRef terminates. This message is also sent when the watched actor is on a node that has been removed from the cluster when using akka-cluster or has been marked unreachable when using akka-remote directly.

        watch is idempotent if it is not mixed with watchWith.

        It will fail with an IllegalStateException if the same subject was watched before using watchWith. To clear the termination message, unwatch first.

        *Warning*: This method is not thread-safe and must not be accessed from threads other than the ordinary actor message processing thread, such as CompletionStage callbacks.

        Parameters:
        other - (undocumented)
      • watchWith

        <U> void watchWith​(ActorRef<U> other,
                           T msg)
        Register for termination notification with a custom message once the Actor identified by the given ActorRef terminates. This message is also sent when the watched actor is on a node that has been removed from the cluster when using akka-cluster or has been marked unreachable when using akka-remote directly.

        watchWith is idempotent if it is called with the same msg and not mixed with watch.

        It will fail with an IllegalStateException if the same subject was watched before using watch or watchWith with another termination message. To change the termination message, unwatch first.

        *Warning*: This method is not thread-safe and must not be accessed from threads other than the ordinary actor message processing thread, such as CompletionStage callbacks.

        Parameters:
        other - (undocumented)
        msg - (undocumented)