Class RetrySettings.Builder (2.7.1)

public abstract static class RetrySettings.Builder

A base builder class for RetrySettings. See the class documentation of RetrySettings for a description of the different values that can be set.

Inheritance

java.lang.Object > RetrySettings.Builder

Constructors

Builder()

public Builder()

Methods

build()

public RetrySettings build()
Returns
TypeDescription
RetrySettings

getInitialRetryDelay()

public abstract Duration getInitialRetryDelay()

InitialRetryDelay controls the delay before the first retry. Subsequent retries will use this value adjusted according to the RetryDelayMultiplier. The default value is Duration.ZERO.

Returns
TypeDescription
org.threeten.bp.Duration

getInitialRpcTimeout()

public abstract Duration getInitialRpcTimeout()

InitialRpcTimeout controls the timeout for the initial RPC. Subsequent calls will use this value adjusted according to the RpcTimeoutMultiplier. The default value is Duration.ZERO.

Returns
TypeDescription
org.threeten.bp.Duration

getMaxAttempts()

public abstract int getMaxAttempts()

MaxAttempts defines the maximum number of attempts to perform. The default value is 0. If this value is greater than 0, and the number of attempts reaches this limit, the logic will give up retrying even if the total retry time is still lower than TotalTimeout.

Returns
TypeDescription
int

getMaxRetryDelay()

public abstract Duration getMaxRetryDelay()

MaxRetryDelay puts a limit on the value of the retry delay, so that the RetryDelayMultiplier can't increase the retry delay higher than this amount. The default value is Duration.ZERO.

Returns
TypeDescription
org.threeten.bp.Duration

getMaxRpcTimeout()

public abstract Duration getMaxRpcTimeout()

MaxRpcTimeout puts a limit on the value of the RPC timeout, so that the RpcTimeoutMultiplier can't increase the RPC timeout higher than this amount.

Returns
TypeDescription
org.threeten.bp.Duration

getRetryDelayMultiplier()

public abstract double getRetryDelayMultiplier()

RetryDelayMultiplier controls the change in retry delay. The retry delay of the previous call is multiplied by the RetryDelayMultiplier to calculate the retry delay for the next call. The default value is 1.0.

Returns
TypeDescription
double

getRpcTimeoutMultiplier()

public abstract double getRpcTimeoutMultiplier()

See the class documentation of RetrySettings for a description of what this value does. The default value is 1.0.

Returns
TypeDescription
double

getTotalTimeout()

public abstract Duration getTotalTimeout()

TotalTimeout has ultimate control over how long the logic should keep trying the remote call until it gives up completely. The higher the total timeout, the more retries can be attempted. The default value is Duration.ZERO.

Returns
TypeDescription
org.threeten.bp.Duration

isJittered()

public abstract boolean isJittered()

Jitter determines if the delay time should be randomized. In most cases, if jitter is set to true the actual delay time is calculated in the following way:

actualDelay = rand_between(0, min(maxRetryDelay, exponentialDelay))

The default value is true.

Returns
TypeDescription
boolean

merge(RetrySettings.Builder newSettings)

public RetrySettings.Builder merge(RetrySettings.Builder newSettings)
Parameter
NameDescription
newSettingsRetrySettings.Builder
Returns
TypeDescription
RetrySettings.Builder

setInitialRetryDelay(Duration initialDelay)

public abstract RetrySettings.Builder setInitialRetryDelay(Duration initialDelay)

InitialRetryDelay controls the delay before the first retry. Subsequent retries will use this value adjusted according to the RetryDelayMultiplier. The default value is Duration.ZERO.

Parameter
NameDescription
initialDelayorg.threeten.bp.Duration
Returns
TypeDescription
RetrySettings.Builder

setInitialRpcTimeout(Duration initialTimeout)

public abstract RetrySettings.Builder setInitialRpcTimeout(Duration initialTimeout)

InitialRpcTimeout controls the timeout for the initial RPC. Subsequent calls will use this value adjusted according to the RpcTimeoutMultiplier. The default value is Duration.ZERO.

Parameter
NameDescription
initialTimeoutorg.threeten.bp.Duration
Returns
TypeDescription
RetrySettings.Builder

setJittered(boolean jittered) (deprecated)

public abstract RetrySettings.Builder setJittered(boolean jittered)

(deprecated) Retries always jitter.

Jitter determines if the delay time should be randomized. If jitter is set to true the actual delay time is calculated in the following way:

actualDelay = rand_between(0, min(maxRetryDelay, exponentialDelay))

The default value is true, and this method will be a no-op soon.

Parameter
NameDescription
jitteredboolean
Returns
TypeDescription
RetrySettings.Builder

setLogicalTimeout(Duration timeout)

public RetrySettings.Builder setLogicalTimeout(Duration timeout)

Configures the timeout settings with the given timeout such that the logical call will take no longer than the given timeout and each RPC attempt will use only the time remaining in the logical call as a timeout.

Using this method in conjunction with individual RetrySettings timeout field setters is not advised, because only the order in which they are invoked determines which setter is respected.

Parameter
NameDescription
timeoutorg.threeten.bp.Duration
Returns
TypeDescription
RetrySettings.Builder

setMaxAttempts(int maxAttempts)

public abstract RetrySettings.Builder setMaxAttempts(int maxAttempts)

MaxAttempts defines the maximum number of attempts to perform. The default value is 0. If this value is greater than 0, and the number of attempts reaches this limit, the logic will give up retrying even if the total retry time is still lower than TotalTimeout.

Parameter
NameDescription
maxAttemptsint
Returns
TypeDescription
RetrySettings.Builder

setMaxRetryDelay(Duration maxDelay)

public abstract RetrySettings.Builder setMaxRetryDelay(Duration maxDelay)

MaxRetryDelay puts a limit on the value of the retry delay, so that the RetryDelayMultiplier can't increase the retry delay higher than this amount. The default value is Duration.ZERO.

Parameter
NameDescription
maxDelayorg.threeten.bp.Duration
Returns
TypeDescription
RetrySettings.Builder

setMaxRpcTimeout(Duration maxTimeout)

public abstract RetrySettings.Builder setMaxRpcTimeout(Duration maxTimeout)

MaxRpcTimeout puts a limit on the value of the RPC timeout, so that the RpcTimeoutMultiplier can't increase the RPC timeout higher than this amount. The default value is Duration.ZERO.

Parameter
NameDescription
maxTimeoutorg.threeten.bp.Duration
Returns
TypeDescription
RetrySettings.Builder

setRetryDelayMultiplier(double multiplier)

public abstract RetrySettings.Builder setRetryDelayMultiplier(double multiplier)

RetryDelayMultiplier controls the change in retry delay. The retry delay of the previous call is multiplied by the RetryDelayMultiplier to calculate the retry delay for the next call. The default value is 1.0.

Parameter
NameDescription
multiplierdouble
Returns
TypeDescription
RetrySettings.Builder

setRpcTimeoutMultiplier(double multiplier)

public abstract RetrySettings.Builder setRpcTimeoutMultiplier(double multiplier)

See the class documentation of RetrySettings for a description of what this value does. The default value is 1.0.

Parameter
NameDescription
multiplierdouble
Returns
TypeDescription
RetrySettings.Builder

setTotalTimeout(Duration totalTimeout)

public abstract RetrySettings.Builder setTotalTimeout(Duration totalTimeout)

TotalTimeout has ultimate control over how long the logic should keep trying the remote call until it gives up completely. The higher the total timeout, the more retries can be attempted. The default value is Duration.ZERO.

Parameter
NameDescription
totalTimeoutorg.threeten.bp.Duration
Returns
TypeDescription
RetrySettings.Builder