Skip to content

Commit 7d85c56

Browse files
committed
Javadocs for ContainerProperties constants
1 parent d6c146b commit 7d85c56

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

spring-kafka/src/main/java/org/springframework/kafka/listener/ContainerProperties.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,24 @@ public enum AckMode {
9292

9393
}
9494

95+
/**
96+
* The default {@link #setPollTimeout(long) pollTimeout} (ms).
97+
*/
9598
public static final long DEFAULT_POLL_TIMEOUT = 1000L;
9699

100+
/**
101+
* The default {@link #setShutdownTimeout(long) shutDownTimeout} (ms).
102+
*/
97103
public static final int DEFAULT_SHUTDOWN_TIMEOUT = 10000;
98104

105+
/**
106+
* The default {@link #setMonitorInterval(int) monitorInterval} (s).
107+
*/
99108
public static final int DEFAULT_MONITOR_INTERVAL = 30;
100109

110+
/**
111+
* The default {@link #setNoPollThreshold(float) noPollThreshold}.
112+
*/
101113
public static final float DEFAULT_NO_POLL_THRESHOLD = 3f;
102114

103115
/**

0 commit comments

Comments
 (0)