Package discord4j.common.retry
Class ReconnectOptions.Builder
java.lang.Object
discord4j.common.retry.ReconnectOptions.Builder
- Enclosing class:
- ReconnectOptions
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuild()setBackoff(Backoff backoff) Deprecated.only select implementations will use this value.setBackoffScheduler(Scheduler backoffScheduler) Set theSchedulerto be used when building delayed sequences as backoff.setFirstBackoff(Duration firstBackoff) Set the firstDurationto be applied when computing a backoff.Deprecated.only select implementations will use this value.setJitterFactor(double jitterFactor) Set a jitter factor for exponential backoff that adds randomness to each backoff.setMaxBackoffInterval(Duration maxBackoffInterval) Set the maximumDurationto be applied when computing a backoff.setMaxRetries(long maxRetries) Set the maximum number of iterations to retry before rethrowing the error as exhausted attempts.
-
Constructor Details
-
Builder
protected Builder()
-
-
Method Details
-
setFirstBackoff
Set the firstDurationto be applied when computing a backoff. Defaults to 2 seconds.- Parameters:
firstBackoff- the minimum duration to be applied as backoff- Returns:
- this builder
-
setMaxBackoffInterval
Set the maximumDurationto be applied when computing a backoff. Defaults to 30 seconds.- Parameters:
maxBackoffInterval- the maximum duration to be applied as backoff- Returns:
- this builder
-
setMaxRetries
Set the maximum number of iterations to retry before rethrowing the error as exhausted attempts. Defaults to Long.MAX_VALUE (unlimited retries).- Parameters:
maxRetries- the maximum number of retries- Returns:
- this builder
-
setBackoff
Deprecated.only select implementations will use this value. Moving forward, consider assuming an exponential backoff function bounded byReconnectOptions.getFirstBackoff()andReconnectOptions.getMaxBackoffInterval()Set the backoff function given by reactor-extraBackofftype. Defaults to an exponential backoff strategy that uses a context object for obtaining the actual iteration.- Parameters:
backoff- a backoff function to apply on retries- Returns:
- this builder
-
setJitter
Deprecated.only select implementations will use this value. Moving forward, consider usingsetJitterFactor(double)}Set the jitter function given by reactor-extraJittertype. Defaults to 50% randomness.- Parameters:
jitter- a jitter function to apply on retries- Returns:
- this builder
-
setBackoffScheduler
Set theSchedulerto be used when building delayed sequences as backoff. Defaults to dedicated parallel schedulerReconnectOptions.DEFAULT_BACKOFF_SCHEDULER.- Parameters:
backoffScheduler- a reactor scheduler used for backoff delays- Returns:
- this builder
-
setJitterFactor
Set a jitter factor for exponential backoff that adds randomness to each backoff. Defaults to0.5(a jitter of at most 50% of the computed delay)- Parameters:
jitterFactor- the new jitter factor as adoublebetween0dand1d- Returns:
- this builder
-
build
-