Uses of Interface
io.helidon.faulttolerance.Retry.RetryPolicy
-
Packages that use Retry.RetryPolicy Package Description io.helidon.faulttolerance Fault tolerance for Helidon SE reactive implementation. -
-
Uses of Retry.RetryPolicy in io.helidon.faulttolerance
Classes in io.helidon.faulttolerance that implement Retry.RetryPolicy Modifier and Type Class Description static class
Retry.DelayingRetryPolicy
A retry policy that prolongs the delays between retries by a defined factor.static class
Retry.ExponentialRetryPolicy
A retry policy that increases the delay time following an exponential sequence.static class
Retry.FibonacciRetryPolicy
A retry policy that increases the delay time following the Fibonacci sequence.static class
Retry.JitterRetryPolicy
A retry policy that randomizes delays between execution using a "jitter" time.Methods in io.helidon.faulttolerance with parameters of type Retry.RetryPolicy Modifier and Type Method Description Retry.Builder
Retry.Builder. retryPolicy(Retry.RetryPolicy policy)
Configure a retry policy to use to calculate delays between retries.
-