Uses of Interface
org.springframework.kafka.listener.BatchInterceptor
Packages that use BatchInterceptor
Package
Description
Package for kafka configuration
Package for kafka listeners
-
Uses of BatchInterceptor in org.springframework.kafka.config
Methods in org.springframework.kafka.config with parameters of type BatchInterceptorModifier and TypeMethodDescriptionvoidAbstractKafkaListenerContainerFactory.setBatchInterceptor(BatchInterceptor<K, V> batchInterceptor) Set a batch interceptor to be called before and after calling the listener. -
Uses of BatchInterceptor in org.springframework.kafka.listener
Classes in org.springframework.kafka.listener that implement BatchInterceptorModifier and TypeClassDescriptionclassABatchInterceptorthat delegates to one or moreBatchInterceptors in order.Methods in org.springframework.kafka.listener that return BatchInterceptorModifier and TypeMethodDescriptionprotected BatchInterceptor<K,V> AbstractMessageListenerContainer.getBatchInterceptor()Methods in org.springframework.kafka.listener with parameters of type BatchInterceptorModifier and TypeMethodDescriptionvoidAbstractMessageListenerContainer.setBatchInterceptor(BatchInterceptor<K, V> batchInterceptor) Set an interceptor to be called before calling the record listener.Constructors in org.springframework.kafka.listener with parameters of type BatchInterceptorModifierConstructorDescriptionCompositeBatchInterceptor(BatchInterceptor<K, V>... delegates) Construct an instance with the provided delegates.