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 newBestEffortRetryStrategywith 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 BackoffBackoff. ZERO_BACKOFFMethods in com.couchbase.client.core.retry.reactor that return Backoff Modifier and Type Method Description static BackoffBackoff. exponential(Duration firstBackoff, Duration maxBackoff, int factor, boolean basedOnPreviousValue)Backoff function with exponential backoff delay.static BackoffBackoff. fixed(Duration backoffInterval)Backoff function with fixed backoff delaystatic BackoffBackoff. 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.
-