@InterfaceStability.Experimental @InterfaceAudience.Public public class RetryBuilder extends Object
Builder for RetryWhenFunction
. Start with any()
, anyOf(Class[])
or allBut(Class[])
factory methods.
By default, without calling additional methods it will retry on the specified exceptions, with a constant delay (see Retry.DEFAULT_DELAY
), and only once.
Note that if retriable errors keep occurring more than the maximum allowed number of attempts, the last error that triggered the extraneous attempt will be wrapped as the cause inside a CannotRetryException
, which will be emitted via the observable’s onError method.
Modifier and Type | Class and Description |
---|---|
protected static class |
RetryBuilder.ShouldStopOnError |
Modifier and Type | Method and Description |
---|---|
static RetryBuilder |
allBut(Class<? extends Throwable>... types)
Only errors that are NOT instanceOf the specified types will trigger a retry
|
static RetryBuilder |
any()
Any error will trigger a retry
|
static RetryBuilder |
anyOf(Class<? extends Throwable>... types)
Only errors that are instanceOf the specified types will trigger a retry
|
RetryWhenFunction |
build()
Construct the resulting
RetryWhenFunction |
RetryBuilder |
delay(com.couchbase.client.core.time.Delay delay)
Customize the retry
Delay |
RetryBuilder |
delay(com.couchbase.client.core.time.Delay delay,
Scheduler scheduler)
Set both the
Delay and the Scheduler on which the delay is waited. |
RetryBuilder |
delay(Scheduler scheduler)
Use
Retry.DEFAULT_DELAY but wait on a specific Scheduler |
RetryBuilder |
max(int maxAttempts)
Make at most maxAttempts retry attempts.
|
RetryBuilder |
once()
Make only one retry attempt (default).
|
public static RetryBuilder anyOf(Class<? extends Throwable>... types)
Only errors that are instanceOf the specified types will trigger a retry
public static RetryBuilder allBut(Class<? extends Throwable>... types)
Only errors that are NOT instanceOf the specified types will trigger a retry
public static RetryBuilder any()
Any error will trigger a retry
public RetryBuilder once()
Make only one retry attempt (default).
If an error that can trigger a retry occurs twice in a row, it will be wrapped as the cause inside a CannotRetryException
, which will be emitted via the observable’s onError method.
public RetryBuilder max(int maxAttempts)
Make at most maxAttempts retry attempts.
If an error that can trigger a retry occurs more that maxAttempts, it will be wrapped as the cause inside a CannotRetryException
, which will be emitted via the observable’s onError method.
public RetryBuilder delay(com.couchbase.client.core.time.Delay delay)
Customize the retry Delay
public RetryBuilder delay(Scheduler scheduler)
Use Retry.DEFAULT_DELAY
but wait on a specific Scheduler
public RetryBuilder delay(com.couchbase.client.core.time.Delay delay, Scheduler scheduler)
Set both the Delay
and the Scheduler
on which the delay is waited. If the delay is null, Retry.DEFAULT_DELAY
is used.
public RetryWhenFunction build()
Construct the resulting RetryWhenFunction
Copyright © 2014 Couchbase, Inc.