Struct tokio_retry::strategies::ExponentialBackoff [] [src]

pub struct ExponentialBackoff { /* fields omitted */ }

A retry strategy driven by exponential back-off.

The power corresponds to the number of past attempts.

Methods

impl ExponentialBackoff
[src]

Constructs a new exponential back-off strategy, given a base duration in milliseconds.

The resulting duration is calculated by taking the base to the n-th power, where n denotes the number of past attempts.

Trait Implementations

impl Clone for ExponentialBackoff
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl RetryStrategy for ExponentialBackoff
[src]

If Some is returned, causes a delay of the specified duration before the next attempt. If None is returned, causes no further attempts. Read more

Introduce full random jitter to the delay between attempts.

Limit the number of retries.

Limit the delay between attempts.

Run the provided action, and if it fails, retry it using this strategy.