Package akka.actor.typed.javadsl
Class BuiltReceive<T>
- java.lang.Object
-
- akka.actor.typed.Behavior<T>
-
- akka.actor.typed.ExtensibleBehavior<T>
-
- akka.actor.typed.javadsl.Receive<T>
-
- akka.actor.typed.javadsl.BuiltReceive<T>
-
public final class BuiltReceive<T> extends Receive<T>
Receive type forAbstractBehavior
INTERNAL API
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class akka.actor.typed.Behavior
Behavior.BehaviorDecorators<Inner>, Behavior.BehaviorDecorators$
-
-
Constructor Summary
Constructors Constructor Description BuiltReceive(akka.actor.typed.javadsl.ReceiveBuilder.Case<T,T>[] messageHandlers, akka.actor.typed.javadsl.ReceiveBuilder.Case<T,Signal>[] signalHandlers)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Behavior<T>
receiveMessage(T msg)
Process an incoming message and return the next behavior.Behavior<T>
receiveSignal(Signal msg)
Process an incomingSignal
and return the next behavior.-
Methods inherited from class akka.actor.typed.javadsl.Receive
receive, receiveSignal
-
Methods inherited from class akka.actor.typed.Behavior
BehaviorDecorators, canonicalize, existsInStack, interpretMessage, interpretSignal, isAlive, isDeferred, isUnhandled, narrow, start, validateAsInitial
-
-
-
-
Method Detail
-
receiveMessage
public Behavior<T> receiveMessage(T msg)
Description copied from class:Receive
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 handled- Specified by:
receiveMessage
in classReceive<T>
-
receiveSignal
public Behavior<T> receiveSignal(Signal msg)
Description copied from class:Receive
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 handled- Specified by:
receiveSignal
in classReceive<T>
-
-