Class LogMessagesInterceptor


  • public final class LogMessagesInterceptor
    extends BehaviorInterceptor<java.lang.Object,​java.lang.Object>
    Log all messages for this decorated ReceiveTarget[T] to logger before receiving it ourselves.

    INTERNAL API

    • Constructor Detail

      • LogMessagesInterceptor

        public LogMessagesInterceptor​(LogOptions opts)
    • Method Detail

      • aroundReceive

        public Behavior<java.lang.Object> aroundReceive​(TypedActorContext<java.lang.Object> ctx,
                                                        java.lang.Object msg,
                                                        BehaviorInterceptor.ReceiveTarget<java.lang.Object> 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<java.lang.Object,​java.lang.Object>
        Returns:
        The behavior for next message or signal
      • isSame

        public boolean isSame​(BehaviorInterceptor<java.lang.Object,​java.lang.Object> other)
        Overrides:
        isSame in class BehaviorInterceptor<java.lang.Object,​java.lang.Object>
        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.