Skip to content

Commit 2cd4d9d

Browse files
committed
Javadocs for ContainerProperties constants
1 parent 40f76f0 commit 2cd4d9d

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/config/ContainerProperties.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,24 @@
4646
*/
4747
public class ContainerProperties {
4848

49+
/**
50+
* The default {@link #setPollTimeout(long) pollTimeout} (ms).
51+
*/
4952
public static final long DEFAULT_POLL_TIMEOUT = 1000L;
5053

54+
/**
55+
* The default {@link #setShutdownTimeout(long) shutDownTimeout} (ms).
56+
*/
5157
public static final int DEFAULT_SHUTDOWN_TIMEOUT = 10000;
5258

59+
/**
60+
* The default {@link #setMonitorInterval(int) monitorInterval} (s).
61+
*/
5362
public static final int DEFAULT_MONITOR_INTERVAL = 30;
5463

64+
/**
65+
* The default {@link #setNoPollThreshold(float) noPollThreshold}.
66+
*/
5567
public static final float DEFAULT_NO_POLL_THRESHOLD = 3f;
5668

5769
/**

0 commit comments

Comments
 (0)