[][src]Struct kwait::JitteredBackoffManager

pub struct JitteredBackoffManager { /* fields omitted */ }

Implementations

impl JitteredBackoffManager[src]

pub fn new_jittered_backoff_manager(
    duration: Duration,
    jitter: f64
) -> Box<dyn BackoffManager>
[src]

new_jittered_backoff_manager returns a BackoffManager that backoffs with given duration plus given jitter. If the jitter is negative, backoff will not be jittered.

Trait Implementations

impl BackoffManager for JitteredBackoffManager[src]

fn backoff(&mut self) -> Receiver<Instant>[src]

backoff implements BackoffManager.backoff, it returns a timer so caller can block on the timer for jittered backoff. The returned timer must be drained before calling backoff() the second time

Auto Trait Implementations

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, U> Into<U> for T where
    U: From<T>, 
[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,