Uses of Interface
org.keycloak.common.util.Retry.AdvancedRunnable
- 
Packages that use Retry.AdvancedRunnable Package Description org.keycloak.common.util 
- 
- 
Uses of Retry.AdvancedRunnable in org.keycloak.common.utilMethods in org.keycloak.common.util with parameters of type Retry.AdvancedRunnable Modifier and Type Method Description static intRetry. executeWithBackoff(Retry.AdvancedRunnable runnable, int attemptsCount, int intervalBaseMillis)Runs the givenrunnableat mostattemptsCounttimes until it passes, leaving some increasing random delay milliseconds between the invocations.static intRetry. executeWithBackoff(Retry.AdvancedRunnable runnable, Duration timeout, int intervalBaseMillis)static intRetry. executeWithBackoff(Retry.AdvancedRunnable runnable, Retry.ThrowableCallback throwableCallback, int attemptsCount, int intervalBaseMillis)static intRetry. executeWithBackoff(Retry.AdvancedRunnable runnable, Retry.ThrowableCallback throwableCallback, Duration timeout, int intervalBaseMillis)
 
-