Class BehaviorImpl.ReceiveMessageBehavior<T>
- java.lang.Object
-
- akka.actor.typed.Behavior<T>
-
- akka.actor.typed.ExtensibleBehavior<T>
-
- akka.actor.typed.internal.BehaviorImpl.ReceiveMessageBehavior<T>
-
- Enclosing class:
- BehaviorImpl
public static class BehaviorImpl.ReceiveMessageBehavior<T> extends ExtensibleBehavior<T>
Similar toBehaviorImpl.ReceiveBehavior
howeveronMessage
does not accept context. We implement it separately in order to be able to avoid wrapping each function in another function which drops the context parameter.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class akka.actor.typed.Behavior
Behavior.BehaviorDecorators<Inner>, Behavior.BehaviorDecorators$
-
-
Constructor Summary
Constructors Constructor Description ReceiveMessageBehavior(scala.Function1<T,Behavior<T>> onMessage, scala.PartialFunction<scala.Tuple2<ActorContext<T>,Signal>,Behavior<T>> onSignal)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description scala.Function1<T,Behavior<T>>
onMessage()
Behavior<T>
receive(TypedActorContext<T> ctx, T msg)
Process an incoming message and return the next behavior.Behavior<T>
receiveSignal(TypedActorContext<T> ctx, Signal msg)
Process an incomingSignal
and return the next behavior.java.lang.String
toString()
-
Methods inherited from class akka.actor.typed.Behavior
BehaviorDecorators, canonicalize, existsInStack, interpretMessage, interpretSignal, isAlive, isDeferred, isUnhandled, narrow, start, validateAsInitial
-
-
-
-
Method Detail
-
receive
public Behavior<T> receive(TypedActorContext<T> ctx, T msg)
Description copied from class:ExtensibleBehavior
Process an incoming message and return the next behavior.The returned behavior can in addition to normal behaviors be one of the canned special objects:
* returning
stopped
will terminate this Behavior * returningsame
designates to reuse the current Behavior * returningunhandled
keeps the same Behavior and signals that the message was not yet handledCode calling this method should use
Behavior$
canonicalize
to replace the special objects with real Behaviors.- Specified by:
receive
in classExtensibleBehavior<T>
-
receiveSignal
public Behavior<T> receiveSignal(TypedActorContext<T> ctx, Signal msg)
Description copied from class:ExtensibleBehavior
Process an incomingSignal
and return the next behavior. This means that all lifecycle hooks, ReceiveTimeout, Terminated and Failed messages can initiate a behavior change.The returned behavior can in addition to normal behaviors be one of the canned special objects:
* returning
stopped
will terminate this Behavior * returningsame
designates to reuse the current Behavior * returningunhandled
keeps the same Behavior and signals that the message was not yet handledCode calling this method should use
Behavior$
canonicalize
to replace the special objects with real Behaviors.- Specified by:
receiveSignal
in classExtensibleBehavior<T>
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-