Class WidenedInterceptor<O,​I>

  • All Implemented Interfaces:
    java.io.Serializable, scala.Equals, scala.Product, scala.Serializable

    public final class WidenedInterceptor<O,​I>
    extends BehaviorInterceptor<O,​I>
    implements scala.Product, scala.Serializable
    See Also:
    Serialized Form
    • Constructor Detail

      • WidenedInterceptor

        public WidenedInterceptor​(scala.PartialFunction<O,​I> matcher)
    • Method Detail

      • apply

        public static <O,​I> WidenedInterceptor<O,​I> apply​(scala.PartialFunction<O,​I> matcher)
        INTERNAL API
        Parameters:
        matcher - (undocumented)
        Returns:
        (undocumented)
      • unapply

        public static <O,​I> scala.Option<scala.PartialFunction<O,​I>> unapply​(WidenedInterceptor<O,​I> x$0)
      • matcher

        public scala.PartialFunction<O,​I> matcher()
      • isSame

        public boolean isSame​(BehaviorInterceptor<java.lang.Object,​java.lang.Object> other)
        Overrides:
        isSame in class BehaviorInterceptor<O,​I>
        Parameters:
        other - (undocumented)
        Returns:
        true if this behavior logically the same as another behavior interceptor and can therefore be eliminated (to avoid building infinitely growing stacks of behaviors)? Default implementation is based on instance equality. Override to provide use case specific logic.
      • aroundReceive

        public Behavior<I> aroundReceive​(TypedActorContext<O> ctx,
                                         O msg,
                                         BehaviorInterceptor.ReceiveTarget<I> target)
        Description copied from class: BehaviorInterceptor
        Intercept a message sent to the running actor. Pass the message on to the next behavior in the stack by passing it to target.apply, return Behaviors.same without invoking target to filter out the message.

        Specified by:
        aroundReceive in class BehaviorInterceptor<O,​I>
        Parameters:
        ctx - (undocumented)
        msg - (undocumented)
        target - (undocumented)
        Returns:
        The behavior for next message or signal
      • toString

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

        public <O,​I> WidenedInterceptor<O,​I> copy​(scala.PartialFunction<O,​I> matcher)
      • copy$default$1

        public <O,​I> scala.PartialFunction<O,​I> copy$default$1()
      • productPrefix

        public java.lang.String productPrefix()
        Specified by:
        productPrefix in interface scala.Product
      • productArity

        public int productArity()
        Specified by:
        productArity in interface scala.Product
      • productElement

        public java.lang.Object productElement​(int x$1)
        Specified by:
        productElement in interface scala.Product
      • productIterator

        public scala.collection.Iterator<java.lang.Object> productIterator()
        Specified by:
        productIterator in interface scala.Product
      • canEqual

        public boolean canEqual​(java.lang.Object x$1)
        Specified by:
        canEqual in interface scala.Equals
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object x$1)
        Specified by:
        equals in interface scala.Equals
        Overrides:
        equals in class java.lang.Object