Hi,
I'm trying to add a custom consumer interceptor using 'org.apache.kafka.clients.consumer.ConsumerInterceptor'. The problem I've here is the 'onConsume' method is taking 'ConsumerRecords<String, Object> records' but i'm looking for intercepting only one record at a time instead of a bunch of records.
How do i do that? Please suggest