Skip to content

Commit f966fff

Browse files
Karol Dowbeckigaryrussell
Karol Dowbecki
authored andcommitted
GH-1704: Missing delegate method
1 parent f74a0fd commit f966fff

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

spring-kafka/src/main/java/org/springframework/kafka/listener/CompositeRecordInterceptor.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,9 @@ public void clearThreadState(Consumer<?, ?> consumer) {
8787
this.delegates.forEach(del -> del.clearThreadState(consumer));
8888
}
8989

90+
@Override
91+
public void afterRecord(ConsumerRecord<K, V> record, Consumer<K, V> consumer) {
92+
this.delegates.forEach(del -> del.afterRecord(record, consumer));
93+
}
94+
9095
}

0 commit comments

Comments
 (0)