Uses of Interface
com.couchbase.client.core.retry.reactor.Backoff
-
Packages that use Backoff Package Description com.couchbase.client.core.retry com.couchbase.client.core.retry.reactor -
-
Uses of Backoff in com.couchbase.client.core.retry
Constructors in com.couchbase.client.core.retry with parameters of type Backoff Constructor Description BestEffortRetryStrategy(Backoff backoff)
Creates a newBestEffortRetryStrategy
with aa customBackoff
. -
Uses of Backoff in com.couchbase.client.core.retry.reactor
Fields in com.couchbase.client.core.retry.reactor declared as Backoff Modifier and Type Field Description static Backoff
Backoff. ZERO_BACKOFF
Methods in com.couchbase.client.core.retry.reactor that return Backoff Modifier and Type Method Description static Backoff
Backoff. exponential(Duration firstBackoff, Duration maxBackoff, int factor, boolean basedOnPreviousValue)
Backoff function with exponential backoff delay.static Backoff
Backoff. fixed(Duration backoffInterval)
Backoff function with fixed backoff delaystatic Backoff
Backoff. zero()
Backoff function with no backoff delayMethods in com.couchbase.client.core.retry.reactor with parameters of type Backoff Modifier and Type Method Description Repeat<T>
DefaultRepeat. backoff(Backoff backoff)
Retry<T>
DefaultRetry. backoff(Backoff backoff)
Repeat<T>
Repeat. backoff(Backoff backoff)
Returns a repeat function with backoff delay.Retry<T>
Retry. backoff(Backoff backoff)
Returns a retry function with backoff delay.
-