@InterfaceStability.Committed @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.InversePredicate |
static interface |
RetryBuilder.OnRetryAction
An interface alias for
Action4<Integer, Throwable, Long, TimeUnit> , suitable for doOnRetry(Action4) . |
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 |
anyMatches(Func1<Throwable,Boolean> retryErrorPredicate)
Any error that pass the predicate 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(Delay delay)
Customize the retry
Delay |
RetryBuilder |
delay(Delay delay,
Scheduler scheduler)
|
RetryBuilder |
delay(Scheduler scheduler)
Use
Retry.DEFAULT_DELAY but wait on a specific Scheduler |
RetryBuilder |
doOnRetry(Action4<Integer,Throwable,Long,TimeUnit> doOnRetryAction)
Execute some code each time a retry is scheduled (at the moment the retriable exception is caught, but before the retry delay is applied).
|
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 static RetryBuilder anyMatches(Func1<Throwable,Boolean> retryErrorPredicate)
Any error that pass the predicate 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.
Note that the maximum accepted value is
, the internal retry mechanism will ensure a total of Integer.MAX_VALUE
- 1maxAttempts + 1
total attempts, accounting for the original call.
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(Delay delay)
Customize the retry Delay
public RetryBuilder delay(Scheduler scheduler)
Use Retry.DEFAULT_DELAY
but wait on a specific Scheduler
public RetryBuilder delay(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 RetryBuilder doOnRetry(Action4<Integer,Throwable,Long,TimeUnit> doOnRetryAction)
Execute some code each time a retry is scheduled (at the moment the retriable exception is caught, but before the retry delay is applied). Only quick executing code should be performed, do not block in this action.
The action receives the retry attempt number (1-n), the exception that caused the retry, the delay duration and timeunit for the scheduled retry.
doOnRetryAction
- the side-effect action to perform whenever a retry is scheduled.if you want a shorter signature.
public RetryWhenFunction build()
Construct the resulting RetryWhenFunction
Copyright © 2015 Couchbase, Inc.