pub struct ExponentialBuilder { /* private fields */ }Expand description
ExponentialBuilder is used to construct an [ExponentialBackoff] that offers delays with exponential retries.
§Default
- jitter: false
- factor: 2
- min_delay: 1s
- max_delay: 60s
- max_times: 3
§Examples
use anyhow::Result;
use backon::ExponentialBuilder;
use backon::Retryable;
async fn fetch() -> Result<String> {
Ok(reqwest::get("https://www.rust-lang.org")
.await?
.text()
.await?)
}
#[tokio::main(flavor = "current_thread")]
async fn main() -> Result<()> {
let content = fetch.retry(ExponentialBuilder::default()).await?;
println!("fetch succeeded: {}", content);
Ok(())
}Implementations§
Source§impl ExponentialBuilder
impl ExponentialBuilder
Sourcepub fn with_jitter(self) -> ExponentialBuilder
pub fn with_jitter(self) -> ExponentialBuilder
Set the jitter for the backoff.
When jitter is enabled, [ExponentialBackoff] will add a random jitter within (0, min_delay)
to the current delay.
Sourcepub fn with_factor(self, factor: f32) -> ExponentialBuilder
pub fn with_factor(self, factor: f32) -> ExponentialBuilder
Set the factor for the backoff.
§Panics
This function will panic if the input factor is less than 1.0.
Sourcepub fn with_min_delay(self, min_delay: Duration) -> ExponentialBuilder
pub fn with_min_delay(self, min_delay: Duration) -> ExponentialBuilder
Set the minimum delay for the backoff.
Sourcepub fn with_max_delay(self, max_delay: Duration) -> ExponentialBuilder
pub fn with_max_delay(self, max_delay: Duration) -> ExponentialBuilder
Set the maximum delay for the backoff.
The delay will not increase if the current delay exceeds the maximum delay.
Sourcepub fn without_max_delay(self) -> ExponentialBuilder
pub fn without_max_delay(self) -> ExponentialBuilder
Set no maximum delay for the backoff.
The delay will keep increasing.
The delay will saturate at Duration::MAX which is an unrealistic delay.
Sourcepub fn with_max_times(self, max_times: usize) -> ExponentialBuilder
pub fn with_max_times(self, max_times: usize) -> ExponentialBuilder
Set the maximum number of attempts for the current backoff.
The backoff will stop if the maximum number of attempts is reached.
Sourcepub fn without_max_times(self) -> ExponentialBuilder
pub fn without_max_times(self) -> ExponentialBuilder
Set no maximum number of attempts for the current backoff.
The backoff will not stop by itself.
The backoff could stop reaching usize::MAX attempts but this is unrealistic.
Trait Implementations§
Source§impl BackoffBuilder for &ExponentialBuilder
impl BackoffBuilder for &ExponentialBuilder
Source§fn build(self) -> <&ExponentialBuilder as BackoffBuilder>::Backoff
fn build(self) -> <&ExponentialBuilder as BackoffBuilder>::Backoff
Source§impl BackoffBuilder for ExponentialBuilder
impl BackoffBuilder for ExponentialBuilder
Source§fn build(self) -> <ExponentialBuilder as BackoffBuilder>::Backoff
fn build(self) -> <ExponentialBuilder as BackoffBuilder>::Backoff
Source§impl Clone for ExponentialBuilder
impl Clone for ExponentialBuilder
Source§fn clone(&self) -> ExponentialBuilder
fn clone(&self) -> ExponentialBuilder
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for ExponentialBuilder
impl Debug for ExponentialBuilder
Source§impl Default for ExponentialBuilder
impl Default for ExponentialBuilder
Source§fn default() -> ExponentialBuilder
fn default() -> ExponentialBuilder
impl Copy for ExponentialBuilder
Auto Trait Implementations§
impl Freeze for ExponentialBuilder
impl RefUnwindSafe for ExponentialBuilder
impl Send for ExponentialBuilder
impl Sync for ExponentialBuilder
impl Unpin for ExponentialBuilder
impl UnwindSafe for ExponentialBuilder
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a tonic::Request