We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3030094 commit d76a4faCopy full SHA for d76a4fa
spring-kafka/src/main/java/org/springframework/kafka/listener/AbstractMessageListenerContainer.java
@@ -227,7 +227,12 @@ public int getPhase() {
227
return this.phase;
228
}
229
230
- protected AfterRollbackProcessor<? super K, ? super V> getAfterRollbackProcessor() {
+ /**
231
+ * Return the currently configured {@link AfterRollbackProcessor}.
232
+ * @return the after rollback processor.
233
+ * @since 2.2.14
234
+ */
235
+ public AfterRollbackProcessor<? super K, ? super V> getAfterRollbackProcessor() {
236
return this.afterRollbackProcessor;
237
238
0 commit comments