You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/kafka/ConcurrentKafkaListenerContainerFactoryConfigurer.java
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/kafka/KafkaProperties.java
+14
Original file line number
Diff line number
Diff line change
@@ -881,6 +881,12 @@ public enum Type {
881
881
*/
882
882
privateAckModeackMode;
883
883
884
+
/**
885
+
* Support for asynchronous record acknowledgements. Only applies when
886
+
* spring.kafka.listener.ack-mode is manual or manual-immediate.
887
+
*/
888
+
privateBooleanasyncAcks;
889
+
884
890
/**
885
891
* Prefix for the listener's consumer client.id property.
886
892
*/
@@ -969,6 +975,14 @@ public void setAckMode(AckMode ackMode) {
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/kafka/KafkaAutoConfigurationTests.java
0 commit comments