Uses of Class
io.vertx.rxjava3.circuitbreaker.RetryPolicy
-
Packages that use RetryPolicy Package Description io.vertx.rxjava3.circuitbreaker -
-
Uses of RetryPolicy in io.vertx.rxjava3.circuitbreaker
Fields in io.vertx.rxjava3.circuitbreaker with type parameters of type RetryPolicy Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<RetryPolicy>
RetryPolicy. __TYPE_ARG
Methods in io.vertx.rxjava3.circuitbreaker that return RetryPolicy Modifier and Type Method Description static RetryPolicy
RetryPolicy. constantDelay(long delay)
Create a constant delay retry policy.static RetryPolicy
RetryPolicy. exponentialDelayWithJitter(long initialDelay, long maxDelay)
Create an exponential delay with jitter retry policy.static RetryPolicy
RetryPolicy. linearDelay(long initialDelay, long maxDelay)
Create a linear delay retry policy.static RetryPolicy
RetryPolicy. newInstance(RetryPolicy arg)
Methods in io.vertx.rxjava3.circuitbreaker with parameters of type RetryPolicy Modifier and Type Method Description CircuitBreaker
CircuitBreaker. retryPolicy(RetryPolicy retryPolicy)
Set aRetryPolicy
which computes a delay before a retry attempt.
-