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
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -946,6 +946,12 @@ public enum Type {
946
946
*/
947
947
privatebooleanmissingTopicsFatal = false;
948
948
949
+
/**
950
+
* Whether the container stops after the current record is processed or after all
951
+
* the records from the previous poll are processed.
952
+
*/
953
+
privatebooleanimmediateStop = false;
954
+
949
955
publicTypegetType() {
950
956
returnthis.type;
951
957
}
@@ -1066,6 +1072,14 @@ public void setMissingTopicsFatal(boolean missingTopicsFatal) {
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