Struct taskcluster::retry::Retry[][src]

pub struct Retry {
    pub retries: u32,
    pub max_delay: Duration,
    pub delay_factor: Duration,
    pub randomization_factor: f64,
}

Configuration for a client’s automatic retrying. The field names here match those of the JS client.

Fields

retries: u32

Number of retries (not counting the first try) for transient errors. Zero to disable retries entirely. (default 5)

max_delay: Duration

Maximum interval between retries (default 30s)

delay_factor: Duration

Factor for delay: 2 ^ retry * delay_factor. 100ms (default) is a good value for servers, and 500ms a good value for background processes. (default 100ms)

randomization_factor: f64

Randomization factor added as. delay = delay * random([1 - randomizationFactor; 1 + randomizationFactor]) (default 0.25)

Trait Implementations

impl Clone for Retry[src]

impl Debug for Retry[src]

impl Default for Retry[src]

Auto Trait Implementations

impl RefUnwindSafe for Retry

impl Send for Retry

impl Sync for Retry

impl Unpin for Retry

impl UnwindSafe for Retry

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.