Class InterceptorImpl<O,​I>


  • public final class InterceptorImpl<O,​I>
    extends ExtensibleBehavior<O>
    Provides the impl of any behavior that could nest another behavior

    INTERNAL API

    • Method Detail

      • nestedBehavior

        public Behavior<I> nestedBehavior()
      • receiveSignal

        public Behavior<O> receiveSignal​(TypedActorContext<O> ctx,
                                         Signal signal)
        Description copied from class: ExtensibleBehavior
        Process an incoming Signal 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 * returning same designates to reuse the current Behavior * returning unhandled keeps the same Behavior and signals that the message was not yet handled

        Code calling this method should use Behavior$ canonicalize to replace the special objects with real Behaviors.

        Specified by:
        receiveSignal in class ExtensibleBehavior<O>
        Parameters:
        ctx - (undocumented)
        signal - (undocumented)
        Returns:
        (undocumented)
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object