Packages

object Behaviors

Annotations
@ApiMayChange()
Source
Behaviors.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Behaviors
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final class Supervise[T] extends AnyRef

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  6. def empty[T]: Behavior[T]

    A behavior that treats every incoming message as unhandled.

  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. def ignore[T]: Behavior[T]

    A behavior that ignores every incoming message and returns “same”.

  12. def intercept[O, I](behaviorInterceptor: BehaviorInterceptor[O, I], behavior: Behavior[I]): Behavior[O]

    Intercept messages and signals for a behavior by first passing them to a akka.actor.typed.BehaviorInterceptor

    Intercept messages and signals for a behavior by first passing them to a akka.actor.typed.BehaviorInterceptor

    When a behavior returns a new behavior as a result of processing a signal or message and that behavior already contains the same interceptor (defined by the akka.actor.typed.BehaviorInterceptor#isSame method) only the innermost interceptor is kept. This is to protect against stack overflow when recursively defining behaviors.

    If the interceptor does keep mutable state care must be taken to create the instance in a setup block so that a new instance is created per spawned actor rather than shared among actor instance.

  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. def logMessages[T](logOptions: LogOptions, behavior: Behavior[T]): Behavior[T]

    Behavior decorator that logs all messages to the akka.actor.typed.Behavior using the provided akka.actor.typed.LogOptions configuration before invoking the wrapped behavior.

    Behavior decorator that logs all messages to the akka.actor.typed.Behavior using the provided akka.actor.typed.LogOptions configuration before invoking the wrapped behavior. To include an MDC context then first wrap logMessages with withMDC.

  15. def logMessages[T](behavior: Behavior[T]): Behavior[T]

    Behavior decorator that logs all messages to the akka.actor.typed.Behavior using the provided akka.actor.typed.LogOptions default configuration before invoking the wrapped behavior.

    Behavior decorator that logs all messages to the akka.actor.typed.Behavior using the provided akka.actor.typed.LogOptions default configuration before invoking the wrapped behavior. To include an MDC context then first wrap logMessages with withMDC.

  16. def monitor[T](monitor: ActorRef[T], behavior: Behavior[T]): Behavior[T]

    Behavior decorator that copies all received message to the designated monitor akka.actor.typed.ActorRef before invoking the wrapped behavior.

    Behavior decorator that copies all received message to the designated monitor akka.actor.typed.ActorRef before invoking the wrapped behavior. The wrapped behavior can evolve (i.e. return different behavior) without needing to be wrapped in a monitor call again.

  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. def receive[T](type: Class[T]): BehaviorBuilder[T]

    Constructs an actor behavior builder that can build a behavior that can react to both incoming messages and lifecycle signals.

    Constructs an actor behavior builder that can build a behavior that can react to both incoming messages and lifecycle signals.

    Compared to using AbstractBehavior this factory is a more functional style of defining the Behavior. Processing the next message results in a new behavior that can potentially be different from this one. State is maintained by returning a new behavior that holds the new immutable state.

    type

    the supertype of all messages accepted by this behavior

    returns

    the behavior builder

  21. def receive[T](onMessage: Function2[ActorContext[T], T, Behavior[T]], onSignal: Function2[ActorContext[T], Signal, Behavior[T]]): Behavior[T]

    Construct an actor behavior that can react to both incoming messages and lifecycle signals.

    Construct an actor behavior that can react to both incoming messages and lifecycle signals. After spawning this actor from another actor (or as the guardian of an akka.actor.typed.ActorSystem) it will be executed within an ActorContext that allows access to the system, spawning and watching other actors, etc.

    Compared to using AbstractBehavior this factory is a more functional style of defining the Behavior. Processing the next message results in a new behavior that can potentially be different from this one. State is maintained by returning a new behavior that holds the new immutable state.

  22. def receive[T](onMessage: Function2[ActorContext[T], T, Behavior[T]]): Behavior[T]

    Construct an actor behavior that can react to incoming messages but not to lifecycle signals.

    Construct an actor behavior that can react to incoming messages but not to lifecycle signals. After spawning this actor from another actor (or as the guardian of an akka.actor.typed.ActorSystem) it will be executed within an ActorContext that allows access to the system, spawning and watching other actors, etc.

    Compared to using AbstractBehavior this factory is a more functional style of defining the Behavior. Processing the next message results in a new behavior that can potentially be different from this one. State is maintained by returning a new behavior that holds the new immutable state.

  23. def receiveMessage[T](onMessage: Function[T, Behavior[T]]): Behavior[T]

    Simplified version of receive with only a single argument - the message to be handled.

    Simplified version of receive with only a single argument - the message to be handled. Useful for when the context is already accessible by other means, like being wrapped in an setup or similar.

    Construct an actor behavior that can react to incoming messages but not to lifecycle signals. After spawning this actor from another actor (or as the guardian of an akka.actor.typed.ActorSystem) it will be executed within an ActorContext that allows access to the system, spawning and watching other actors, etc.

    Compared to using AbstractBehavior this factory is a more functional style of defining the Behavior. Processing the next message results in a new behavior that can potentially be different from this one. State is maintained by returning a new behavior that holds the new immutable state.

  24. def receiveSignal[T](handler: Function2[ActorContext[T], Signal, Behavior[T]]): Behavior[T]

    Construct an actor behavior that can react to lifecycle signals only.

  25. def same[T]: Behavior[T]

    Return this behavior from message processing in order to advise the system to reuse the previous behavior.

    Return this behavior from message processing in order to advise the system to reuse the previous behavior. This is provided in order to avoid the allocation overhead of recreating the current behavior where that is not necessary.

  26. def setup[T](factory: Function[ActorContext[T], Behavior[T]]): Behavior[T]

    setup is a factory for a behavior.

    setup is a factory for a behavior. Creation of the behavior instance is deferred until the actor is started, as opposed to Behaviors#receive that creates the behavior instance immediately before the actor is running. The factory function pass the ActorContext as parameter and that can for example be used for spawning child actors.

    setup is typically used as the outer most behavior when spawning an actor, but it can also be returned as the next behavior when processing a message or signal. In that case it will be started immediately after it is returned, i.e. next message will be processed by the started behavior.

  27. def stopped[T](postStop: Effect): Behavior[T]

    Return this behavior from message processing to signal that this actor shall terminate voluntarily.

    Return this behavior from message processing to signal that this actor shall terminate voluntarily. If this actor has created child actors then these will be stopped as part of the shutdown procedure.

    The PostStop signal that results from stopping this actor will first be passed to the current behavior and then the provided postStop callback will be invoked. All other messages and signals will effectively be ignored.

  28. def stopped[T]: Behavior[T]

    Return this behavior from message processing to signal that this actor shall terminate voluntarily.

    Return this behavior from message processing to signal that this actor shall terminate voluntarily. If this actor has created child actors then these will be stopped as part of the shutdown procedure.

    The PostStop signal that results from stopping this actor will be passed to the current behavior. All other messages and signals will effectively be ignored.

  29. def supervise[T](wrapped: Behavior[T]): Supervise[T]

    Wrap the given behavior such that it is restarted (i.e.

    Wrap the given behavior such that it is restarted (i.e. reset to its initial state) whenever it throws an exception of the given class or a subclass thereof. Exceptions that are not subtypes of Thr will not be caught and thus lead to the termination of the actor.

    It is possible to specify different supervisor strategies, such as restart, resume, backoff.

    The SupervisorStrategy is only invoked for "non fatal" (see scala.util.control.NonFatal) exceptions.

    Example:

    final Behavior[DbCommand] dbConnector = ...
    
    final Behavior[DbCommand] dbRestarts =
       Behaviors.supervise(dbConnector)
         .onFailure(SupervisorStrategy.restart) // handle all NonFatal exceptions
    
    final Behavior[DbCommand] dbSpecificResumes =
       Behaviors.supervise(dbConnector)
         .onFailure[IndexOutOfBoundsException](SupervisorStrategy.resume) // resume for IndexOutOfBoundsException exceptions
  30. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  31. def toString(): String
    Definition Classes
    AnyRef → Any
  32. def unhandled[T]: Behavior[T]

    Return this behavior from message processing in order to advise the system to reuse the previous behavior, including the hint that the message has not been handled.

    Return this behavior from message processing in order to advise the system to reuse the previous behavior, including the hint that the message has not been handled. This hint may be used by composite behaviors that delegate (partial) handling to other behaviors.

  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. def widened[T, U](behavior: Behavior[T], selector: Function[PFBuilder[U, T], PFBuilder[U, T]]): Behavior[U]

    Widen the wrapped Behavior by placing a funnel in front of it: the supplied PartialFunction decides which message to pull in (those that it is defined at) and may transform the incoming message to place them into the wrapped Behavior’s type hierarchy.

    Widen the wrapped Behavior by placing a funnel in front of it: the supplied PartialFunction decides which message to pull in (those that it is defined at) and may transform the incoming message to place them into the wrapped Behavior’s type hierarchy. Signals are not transformed.

    Example:

    Behavior<String> s = Behaviors.receive((ctx, msg) -> {
        System.out.println(msg);
        return Behaviors.same();
      });
    Behavior<Number> n = Behaviors.widened(s, pf -> pf.
            match(BigInteger.class, i -> "BigInteger(" + i + ")").
            match(BigDecimal.class, d -> "BigDecimal(" + d + ")")
            // drop all other kinds of Number
        );

    Scheduled messages via TimerScheduler can currently not be used together with widen, see issue #25318.

    behavior

    the behavior that will receive the selected messages

    selector

    a partial function builder for describing the selection and transformation

    returns

    a behavior of the widened type

  37. def withMdc[T](staticMdc: Map[String, Any], mdcForMessage: Function[T, Map[String, Any]], behavior: Behavior[T]): Behavior[T]

    Combination of static and per message MDC (Mapped Diagnostic Context).

    Combination of static and per message MDC (Mapped Diagnostic Context).

    Each message will get the static MDC plus the MDC returned for the message. If the same key are in both the static and the per message MDC the per message one overwrites the static one in the resulting log entries.

    * The staticMdc or mdcForMessage may be empty.

    staticMdc

    A static MDC applied for each message

    mdcForMessage

    Is invoked before each message is handled, allowing to setup MDC, MDC is cleared after each message processing by the inner behavior is done.

    behavior

    The actual behavior handling the messages, the MDC is used for the log entries logged through ActorContext.log See also akka.actor.typed.Logger.withMdc

  38. def withMdc[T](staticMdc: Map[String, Any], behavior: Behavior[T]): Behavior[T]

    Static MDC (Mapped Diagnostic Context)

    Static MDC (Mapped Diagnostic Context)

    staticMdc

    This MDC is setup in the logging context for every message

    behavior

    The actual behavior handling the messages, the MDC is used for the log entries logged through ActorContext.log See also akka.actor.typed.Logger.withMdc

  39. def withMdc[T](mdcForMessage: Function[T, Map[String, Any]], behavior: Behavior[T]): Behavior[T]

    Per message MDC (Mapped Diagnostic Context) logging.

    Per message MDC (Mapped Diagnostic Context) logging.

    mdcForMessage

    Is invoked before each message is handled, allowing to setup MDC, MDC is cleared after each message processing by the inner behavior is done.

    behavior

    The actual behavior handling the messages, the MDC is used for the log entries logged through ActorContext.log See also akka.actor.typed.Logger.withMdc

  40. def withTimers[T](factory: Function[TimerScheduler[T], Behavior[T]]): Behavior[T]

    Support for scheduled self messages in an actor.

    Support for scheduled self messages in an actor. It takes care of the lifecycle of the timers such as cancelling them when the actor is restarted or stopped.

    See also

    TimerScheduler

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped