Files
ChickenchickenLove 38dba2f9b6 GH-3542: API for adding record interceptors instead of overriding them (#3937)
Fixes: https://github.com/spring-projects/spring-kafka/issues/3542

* Providing the ability to add record interceptors instead of overriding them 
   
   Change `RecordInterceptor` to `List<RecordInterceptor>` in
  `MessageListenerContainer` will allow the addition of multiple `RecordInterceptor` 
   instances instead of overriding the existing one

   Currently, only a single `RecordInterceptor` is supported.
   Users may want to register multiple `RecordInterceptors`.
   There are some workarounds, but they are not clean or ideal solutions.
   By supporting `List<RecordInterceptor`>, users can add their own
   interceptors via `setRecordInterceptor(...)`.

* Adding new API for addRecordInterceptor.
* Addressing PR review

Signed-off-by: Sanghyeok An <ojt90902@naver.com>
2025-06-16 13:01:41 -04:00
..