Trait pravega_client_retry::retry_policy::BackoffSchedule[][src]

pub trait BackoffSchedule: Iterator<Item = Duration> { }

The retry policy that can retry something with backoff policy.

Implementors

impl<T> BackoffSchedule for T where
    T: Iterator<Item = Duration>, 
[src]

Any implementation which implements the Iterator trait would also implement BackoffSchedule.

Loading content...