Package com.netflix.spinnaker.kork.core
Class RetrySupport
- java.lang.Object
-
- com.netflix.spinnaker.kork.core.RetrySupport
-
public class RetrySupport extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description RetrySupport()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description <T> Tretry(java.util.function.Supplier<T> fn, int maxRetries, long retryBackoffMillis, boolean exponential)Deprecated.replaced byretry(Supplier, int, Duration, boolean)<T> Tretry(java.util.function.Supplier<T> fn, int maxRetries, java.time.Duration retryBackoff, boolean exponential)
-
-
-
Method Detail
-
retry
@Deprecated public <T> T retry(java.util.function.Supplier<T> fn, int maxRetries, long retryBackoffMillis, boolean exponential)Deprecated.replaced byretry(Supplier, int, Duration, boolean)
-
retry
public <T> T retry(java.util.function.Supplier<T> fn, int maxRetries, java.time.Duration retryBackoff, boolean exponential)
-
-