Class ExtensibleBehavior<T>
- java.lang.Object
-
- akka.actor.typed.Behavior<T>
-
- akka.actor.typed.ExtensibleBehavior<T>
-
- Direct Known Subclasses:
AbstractBehavior
,AbstractBehavior
,BehaviorImpl.ReceiveBehavior
,BehaviorImpl.ReceiveMessageBehavior
,BuiltBehavior
,ComposedStoppingBehavior
,InterceptorImpl
,Receive
public abstract class ExtensibleBehavior<T> extends Behavior<T>
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.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class akka.actor.typed.Behavior
Behavior.BehaviorDecorators<Inner>, Behavior.BehaviorDecorators$
-
-
Constructor Summary
Constructors Constructor Description ExtensibleBehavior()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract Behavior<T>
receive(TypedActorContext<T> ctx, T msg)
abstract Behavior<T>
receiveSignal(TypedActorContext<T> ctx, Signal msg)
Process an incomingSignal
and return the next behavior.-
Methods inherited from class akka.actor.typed.Behavior
_tag, BehaviorDecorators, canonicalize, existsInStack, interpretMessage, interpretSignal, isAlive, isDeferred, isUnhandled, narrow, start, unsafeCast, validateAsInitial
-
-
-
-
Method Detail
-
receive
public abstract Behavior<T> receive(TypedActorContext<T> ctx, T msg) throws java.lang.Exception
- Throws:
java.lang.Exception
-
receiveSignal
public abstract Behavior<T> receiveSignal(TypedActorContext<T> ctx, Signal msg) throws java.lang.Exception
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.- Parameters:
ctx
- (undocumented)msg
- (undocumented)- Returns:
- (undocumented)
- Throws:
java.lang.Exception
-
-