File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
spring-core/src/main/java/org/springframework/util/backoff Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -42,15 +42,17 @@ public class FixedBackOff implements BackOff {
42
42
43
43
44
44
/**
45
- * Create an instance with an interval of {@value #DEFAULT_INTERVAL}
46
- * ms and an unlimited number of attempts.
45
+ * Create an instance with an interval of {@value #DEFAULT_INTERVAL} ms and
46
+ * an unlimited number of attempts.
47
+ * @see #setInterval(long)
48
+ * @see #setMaxAttempts(long)
47
49
*/
48
50
public FixedBackOff () {
49
51
}
50
52
51
53
/**
52
- * Create an instance.
53
- * @param interval the interval between two attempts
54
+ * Create an instance with the supplied interval and maximum number of attempts .
55
+ * @param interval the interval between two attempts in milliseconds
54
56
* @param maxAttempts the maximum number of attempts
55
57
*/
56
58
public FixedBackOff (long interval , long maxAttempts ) {
You can’t perform that action at this time.
0 commit comments