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.util
Methods in org.keycloak.common.util with parameters of type Retry.AdvancedRunnable Modifier and Type Method Description static int
Retry. executeWithBackoff(Retry.AdvancedRunnable runnable, int attemptsCount, int intervalBaseMillis)
Runs the givenrunnable
at mostattemptsCount
times until it passes, leaving some increasing random delay milliseconds between the invocations.static int
Retry. executeWithBackoff(Retry.AdvancedRunnable runnable, Duration timeout, int intervalBaseMillis)
static int
Retry. executeWithBackoff(Retry.AdvancedRunnable runnable, Retry.ThrowableCallback throwableCallback, int attemptsCount, int intervalBaseMillis)
static int
Retry. executeWithBackoff(Retry.AdvancedRunnable runnable, Retry.ThrowableCallback throwableCallback, Duration timeout, int intervalBaseMillis)
-