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/KafkaProperties.java
+18
Original file line number
Diff line number
Diff line change
@@ -59,6 +59,7 @@
59
59
* @author Tomaz Fernandes
60
60
* @author Andy Wilkinson
61
61
* @author Scott Frederick
62
+
* @author Yanming Zhou
62
63
* @since 1.5.0
63
64
*/
64
65
@ConfigurationProperties("spring.kafka")
@@ -337,6 +338,12 @@ public static class Consumer {
337
338
*/
338
339
privateIntegermaxPollRecords;
339
340
341
+
/**
342
+
* Maximum delay between invocations of poll() when using consumer group
343
+
* management.
344
+
*/
345
+
privateDurationmaxPollInterval;
346
+
340
347
/**
341
348
* Additional consumer-specific properties used to configure the client.
342
349
*/
@@ -454,6 +461,14 @@ public void setMaxPollRecords(Integer maxPollRecords) {
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