pub struct ExponentialRetryPolicy { /* private fields */ }
Expand description
Retry policy with exponential back-off.
Retry policy with exponential back-off (with an added random delay up to 256 ms). Each retry will happen at least after an exponential wait time. So if x is the first retry wait, the second will be x2, the third x4 and so on. The policy will retry until the maximum number of retries have been reached or the maximum allowed delay has passed (whichever comes first). The wait time is not precise.
Trait Implementations§
source§impl Clone for ExponentialRetryPolicy
impl Clone for ExponentialRetryPolicy
source§fn clone(&self) -> ExponentialRetryPolicy
fn clone(&self) -> ExponentialRetryPolicy
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ExponentialRetryPolicy
impl Debug for ExponentialRetryPolicy
source§impl PartialEq for ExponentialRetryPolicy
impl PartialEq for ExponentialRetryPolicy
source§impl RetryPolicy for ExponentialRetryPolicy
impl RetryPolicy for ExponentialRetryPolicy
source§fn is_expired(&self, time_since_start: Duration, retry_count: u32) -> bool
fn is_expired(&self, time_since_start: Duration, retry_count: u32) -> bool
Determine if no more retries should be performed. Read more
source§fn sleep_duration(&self, retry_count: u32) -> Duration
fn sleep_duration(&self, retry_count: u32) -> Duration
Determine how long before the next retry should be attempted.
source§fn wait<'life0, 'life1, 'async_trait>(
&'life0 self,
_error: &'life1 Error,
retry_count: u32,
retry_after: Option<Duration>,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn wait<'life0, 'life1, 'async_trait>(
&'life0 self,
_error: &'life1 Error,
retry_count: u32,
retry_after: Option<Duration>,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
A Future that will wait until the request can be retried.
error
is the Error
value the led to a retry attempt.
retry_after
is the duration to wait before retrying, if provided by the server response.impl Eq for ExponentialRetryPolicy
impl StructuralPartialEq for ExponentialRetryPolicy
Auto Trait Implementations§
impl Freeze for ExponentialRetryPolicy
impl RefUnwindSafe for ExponentialRetryPolicy
impl Send for ExponentialRetryPolicy
impl Sync for ExponentialRetryPolicy
impl Unpin for ExponentialRetryPolicy
impl UnwindSafe for ExponentialRetryPolicy
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.