Class CompositeRecordInterceptor<K,​V>

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void afterRecord​(org.apache.kafka.clients.consumer.ConsumerRecord<K,​V> record, org.apache.kafka.clients.consumer.Consumer<K,​V> consumer)
      void clearThreadState​(org.apache.kafka.clients.consumer.Consumer<?,​?> consumer)
      Call to clear thread-bound resources which were set up in ThreadStateProcessor.setupThreadState(Consumer).
      void failure​(org.apache.kafka.clients.consumer.ConsumerRecord<K,​V> record, java.lang.Exception exception, org.apache.kafka.clients.consumer.Consumer<K,​V> consumer)
      Called after the listener throws an exception.
      org.apache.kafka.clients.consumer.ConsumerRecord<K,​V> intercept​(org.apache.kafka.clients.consumer.ConsumerRecord<K,​V> record, org.apache.kafka.clients.consumer.Consumer<K,​V> consumer)
      Perform some action on the record or return a different one.
      void setupThreadState​(org.apache.kafka.clients.consumer.Consumer<?,​?> consumer)
      Call to set up thread-bound resources which will be available for the entire duration of enclosed operation involving a Consumer.
      void success​(org.apache.kafka.clients.consumer.ConsumerRecord<K,​V> record, org.apache.kafka.clients.consumer.Consumer<K,​V> consumer)
      Called after the listener exits normally.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • CompositeRecordInterceptor

        @SafeVarargs
        public CompositeRecordInterceptor​(RecordInterceptor<K,​V>... delegates)
        Construct an instance with the provided delegates.
        Parameters:
        delegates - the delegates.
    • Method Detail

      • intercept

        @Nullable
        public org.apache.kafka.clients.consumer.ConsumerRecord<K,​V> intercept​(org.apache.kafka.clients.consumer.ConsumerRecord<K,​V> record,
                                                                                     org.apache.kafka.clients.consumer.Consumer<K,​V> consumer)
        Description copied from interface: RecordInterceptor
        Perform some action on the record or return a different one. If null is returned the record will be skipped. Invoked before the listener.
        Specified by:
        intercept in interface ConsumerAwareRecordInterceptor<K,​V>
        Specified by:
        intercept in interface RecordInterceptor<K,​V>
        Parameters:
        record - the record.
        consumer - the consumer.
        Returns:
        the record or null.
      • success

        public void success​(org.apache.kafka.clients.consumer.ConsumerRecord<K,​V> record,
                            org.apache.kafka.clients.consumer.Consumer<K,​V> consumer)
        Description copied from interface: RecordInterceptor
        Called after the listener exits normally.
        Specified by:
        success in interface RecordInterceptor<K,​V>
        Parameters:
        record - the record.
        consumer - the consumer.
      • failure

        public void failure​(org.apache.kafka.clients.consumer.ConsumerRecord<K,​V> record,
                            java.lang.Exception exception,
                            org.apache.kafka.clients.consumer.Consumer<K,​V> consumer)
        Description copied from interface: RecordInterceptor
        Called after the listener throws an exception.
        Specified by:
        failure in interface RecordInterceptor<K,​V>
        Parameters:
        record - the record.
        exception - the exception.
        consumer - the consumer.
      • setupThreadState

        public void setupThreadState​(org.apache.kafka.clients.consumer.Consumer<?,​?> consumer)
        Description copied from interface: ThreadStateProcessor
        Call to set up thread-bound resources which will be available for the entire duration of enclosed operation involving a Consumer.
        Specified by:
        setupThreadState in interface ThreadStateProcessor
        Parameters:
        consumer - the consumer.