Polish Javadoc for FixedBackOff

This commit is contained in:
Sam Brannen 2025-06-11 13:06:55 +02:00
parent b901132192
commit fcdd439ad0
1 changed files with 6 additions and 4 deletions

View File

@ -42,15 +42,17 @@ public class FixedBackOff implements BackOff {
/**
* Create an instance with an interval of {@value #DEFAULT_INTERVAL}
* ms and an unlimited number of attempts.
* Create an instance with an interval of {@value #DEFAULT_INTERVAL} ms and
* an unlimited number of attempts.
* @see #setInterval(long)
* @see #setMaxAttempts(long)
*/
public FixedBackOff() {
}
/**
* Create an instance.
* @param interval the interval between two attempts
* Create an instance with the supplied interval and maximum number of attempts.
* @param interval the interval between two attempts in milliseconds
* @param maxAttempts the maximum number of attempts
*/
public FixedBackOff(long interval, long maxAttempts) {