Uses of Interface
ratpack.exec.util.retry.Delay
-
Packages that use Delay Package Description ratpack.exec.util.retry -
-
Uses of Delay in ratpack.exec.util.retry
Classes in ratpack.exec.util.retry that implement Delay Modifier and Type Class Description class
FixedDelay
A fixed duration based implementation ofDelay
.class
IndexedDelay
A index based implementation ofDelay
.Fields in ratpack.exec.util.retry declared as Delay Modifier and Type Field Description static Delay
AttemptRetryPolicyBuilder. DEFAULT_DELAY
By default, retries will wait 1 second between executions.static Delay
DurationRetryPolicyBuilder. DEFAULT_DELAY
By default, retries will wait 1 second between executions.Methods in ratpack.exec.util.retry with parameters of type Delay Modifier and Type Method Description AttemptRetryPolicyBuilder
AttemptRetryPolicyBuilder. delay(Delay delay)
The delay strategy.DurationRetryPolicyBuilder
DurationRetryPolicyBuilder. delay(Delay delay)
The delay strategy.Constructors in ratpack.exec.util.retry with parameters of type Delay Constructor Description AttemptRetryPolicy(Delay delay, int maxAttempts)
DurationRetryPolicy(Delay delay, Duration maxDuration, Clock clock)
-