Uses of Interface
io.activej.promise.RetryPolicy
Packages that use RetryPolicy
-
Uses of RetryPolicy in io.activej.async.process
Methods in io.activej.async.process with parameters of type RetryPolicyModifier and TypeMethodDescriptionstatic AsyncExecutorAsyncExecutors.retry(RetryPolicy<?> retryPolicy) -
Uses of RetryPolicy in io.activej.async.service
Methods in io.activej.async.service with parameters of type RetryPolicyModifier and TypeMethodDescriptionvoidTaskScheduler.setRetryPolicy(RetryPolicy<?> retryPolicy) TaskScheduler.Builder.withRetryPolicy(RetryPolicy<?> retryPolicy) -
Uses of RetryPolicy in io.activej.promise
Classes in io.activej.promise that implement RetryPolicyModifier and TypeClassDescriptionstatic classstatic classstatic classMethods in io.activej.promise that return RetryPolicyModifier and TypeMethodDescriptionstatic RetryPolicy<?>RetryPolicy.exponentialBackoff(long initialDelay, long maxDelay) static RetryPolicy<?>RetryPolicy.exponentialBackoff(long initialDelay, long maxDelay, double exponent) static RetryPolicy<?>RetryPolicy.exponentialBackoff(Duration initialDelay, Duration maxDelay) static RetryPolicy<?>RetryPolicy.exponentialBackoff(Duration initialDelay, Duration maxDelay, double exponent) static RetryPolicy<Void>RetryPolicy.fixedDelay(long delay) static RetryPolicy<Void>RetryPolicy.fixedDelay(Duration delay) static RetryPolicy<Void>RetryPolicy.immediateRetry()static RetryPolicy<Void>RetryPolicy.noRetry()default RetryPolicy<io.activej.common.tuple.Tuple2<io.activej.common.ref.RefInt,S>> RetryPolicy.withMaxTotalRetryCount(int maxRetryCount) default RetryPolicy<?>RetryPolicy.withMaxTotalRetryTimeout(Duration maxRetryTimeout) Methods in io.activej.promise with parameters of type RetryPolicyModifier and TypeMethodDescriptionstatic <T> Promise<T>Promises.retry(AsyncSupplier<T> supplier, RetryPolicy<?> retryPolicy) static <T> Promise<T>Promises.retry(AsyncSupplier<T> supplier, BiPredicate<T, Exception> breakCondition, RetryPolicy<?> retryPolicy) Constructors in io.activej.promise with parameters of type RetryPolicy