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 4a583b5 commit 1fefc1eCopy full SHA for 1fefc1e
spring-kafka/src/main/java/org/springframework/kafka/listener/AbstractMessageListenerContainer.java
@@ -252,7 +252,12 @@ public int getPhase() {
252
return this.phase;
253
}
254
255
- protected AfterRollbackProcessor<? super K, ? super V> getAfterRollbackProcessor() {
+ /**
256
+ * Return the currently configured {@link AfterRollbackProcessor}.
257
+ * @return the after rollback processor.
258
+ * @since 2.2.14
259
+ */
260
+ public AfterRollbackProcessor<? super K, ? super V> getAfterRollbackProcessor() {
261
return this.afterRollbackProcessor;
262
263
0 commit comments