Class Receive<T>
- java.lang.Object
-
- org.apache.pekko.actor.typed.Behavior<T>
-
- org.apache.pekko.actor.typed.ExtensibleBehavior<T>
-
- org.apache.pekko.actor.typed.javadsl.Receive<T>
-
- Direct Known Subclasses:
BuiltReceive
public abstract class Receive<T> extends ExtensibleBehavior<T>
A specialized "receive" behavior that is implemented using message matching builders, such asReceiveBuilder, fromAbstractBehavior.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.pekko.actor.typed.Behavior
Behavior.BehaviorDecorators<Inner>, Behavior.BehaviorDecorators$
-
-
Constructor Summary
Constructors Constructor Description Receive()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description Behavior<T>receive(TypedActorContext<T> ctx, T msg)Process an incoming message and return the next behavior.abstract Behavior<T>receiveMessage(T msg)Process an incoming message and return the next behavior.abstract Behavior<T>receiveSignal(Signal sig)Process an incomingpekko.actor.typed.Signaland return the next behavior.Behavior<T>receiveSignal(TypedActorContext<T> ctx, Signal sig)Process an incomingSignaland return the next behavior.-
Methods inherited from class org.apache.pekko.actor.typed.Behavior
BehaviorDecorators, canonicalize, existsInStack, interpretMessage, interpretSignal, isAlive, isDeferred, isUnhandled, narrow, start, validateAsInitial
-
-
-
-
Method Detail
-
receive
public final Behavior<T> receive(TypedActorContext<T> ctx, T msg) throws java.lang.Exception
Description copied from class:ExtensibleBehaviorProcess 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
stoppedwill terminate this Behavior * returningsamedesignates to reuse the current Behavior * returningunhandledkeeps the same Behavior and signals that the message was not yet handledCode calling this method should use
Behavior$canonicalizeto replace the special objects with real Behaviors.- Specified by:
receivein classExtensibleBehavior<T>- Throws:
java.lang.Exception
-
receiveMessage
public abstract Behavior<T> receiveMessage(T msg) throws java.lang.Exception
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
stoppedwill terminate this Behavior * returningsamedesignates to reuse the current Behavior * returningunhandledkeeps the same Behavior and signals that the message was not yet handled- Throws:
java.lang.Exception
-
receiveSignal
public abstract Behavior<T> receiveSignal(Signal sig) throws java.lang.Exception
Process an incomingpekko.actor.typed.Signaland 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
stoppedwill terminate this Behavior * returningsamedesignates to reuse the current Behavior * returningunhandledkeeps the same Behavior and signals that the message was not yet handled- Throws:
java.lang.Exception
-
receiveSignal
public final Behavior<T> receiveSignal(TypedActorContext<T> ctx, Signal sig) throws java.lang.Exception
Description copied from class:ExtensibleBehaviorProcess an incomingSignaland 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
stoppedwill terminate this Behavior * returningsamedesignates to reuse the current Behavior * returningunhandledkeeps the same Behavior and signals that the message was not yet handledCode calling this method should use
Behavior$canonicalizeto replace the special objects with real Behaviors.- Specified by:
receiveSignalin classExtensibleBehavior<T>- Throws:
java.lang.Exception
-
-