google_cloud_bigquery::query

Struct RetryWithContext

Source
pub struct RetryWithContext<B, T, E, Ctx, Fut, FutureFn, SF = TokioSleeper, RF = fn(_: &E) -> bool, NF = fn(_: &E, _: Duration)>
where B: Backoff, Fut: Future<Output = (Ctx, Result<T, E>)>, FutureFn: FnMut(Ctx) -> Fut, SF: MaybeSleeper,
{ /* private fields */ }
Expand description

Retry struct generated by RetryableWithContext.

Implementations§

Source§

impl<B, T, E, Ctx, Fut, FutureFn, SF, RF, NF> RetryWithContext<B, T, E, Ctx, Fut, FutureFn, SF, RF, NF>
where B: Backoff, Fut: Future<Output = (Ctx, Result<T, E>)>, FutureFn: FnMut(Ctx) -> Fut, SF: Sleeper, RF: FnMut(&E) -> bool, NF: FnMut(&E, Duration),

Source

pub fn sleep<SN>( self, sleep_fn: SN, ) -> RetryWithContext<B, T, E, Ctx, Fut, FutureFn, SN, RF, NF>
where SN: Sleeper,

Set the sleeper for retrying.

The sleeper should implement the Sleeper trait. The simplest way is to use a closure that returns a Future<Output=()>.

If not specified, we use the DefaultSleeper.

Source

pub fn context( self, context: Ctx, ) -> RetryWithContext<B, T, E, Ctx, Fut, FutureFn, SF, RF, NF>

Set the context for retrying.

Context is used to capture ownership manually to prevent lifetime issues.

Source

pub fn when<RN>( self, retryable: RN, ) -> RetryWithContext<B, T, E, Ctx, Fut, FutureFn, SF, RN, NF>
where RN: FnMut(&E) -> bool,

Set the conditions for retrying.

If not specified, all errors are considered retryable.

§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())
        .when(|e| e.to_string() == "EOF")
        .await?;
    println!("fetch succeeded: {}", content);

    Ok(())
}
Source

pub fn notify<NN>( self, notify: NN, ) -> RetryWithContext<B, T, E, Ctx, Fut, FutureFn, SF, RF, NN>
where NN: FnMut(&E, Duration),

Set to notify for all retry attempts.

When a retry happens, the input function will be invoked with the error and the sleep duration before pausing.

If not specified, this operation does nothing.

§Examples
use core::time::Duration;

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())
        .notify(|err: &anyhow::Error, dur: Duration| {
            println!("retrying error {:?} with sleeping {:?}", err, dur);
        })
        .await?;
    println!("fetch succeeded: {}", content);

    Ok(())
}

Trait Implementations§

Source§

impl<B, T, E, Ctx, Fut, FutureFn, SF, RF, NF> Future for RetryWithContext<B, T, E, Ctx, Fut, FutureFn, SF, RF, NF>
where B: Backoff, Fut: Future<Output = (Ctx, Result<T, E>)>, FutureFn: FnMut(Ctx) -> Fut, SF: Sleeper, RF: FnMut(&E) -> bool, NF: FnMut(&E, Duration),

Source§

type Output = (Ctx, Result<T, E>)

The type of value produced on completion.
Source§

fn poll( self: Pin<&mut RetryWithContext<B, T, E, Ctx, Fut, FutureFn, SF, RF, NF>>, cx: &mut Context<'_>, ) -> Poll<<RetryWithContext<B, T, E, Ctx, Fut, FutureFn, SF, RF, NF> as Future>::Output>

Attempts to resolve the future to a final value, registering the current task for wakeup if the value is not yet available. Read more

Auto Trait Implementations§

§

impl<B, T, E, Ctx, Fut, FutureFn, SF, RF, NF> Freeze for RetryWithContext<B, T, E, Ctx, Fut, FutureFn, SF, RF, NF>
where B: Freeze, RF: Freeze, NF: Freeze, FutureFn: Freeze, SF: Freeze, Fut: Freeze, Ctx: Freeze, <SF as MaybeSleeper>::Sleep: Freeze,

§

impl<B, T, E, Ctx, Fut, FutureFn, SF, RF, NF> RefUnwindSafe for RetryWithContext<B, T, E, Ctx, Fut, FutureFn, SF, RF, NF>
where B: RefUnwindSafe, RF: RefUnwindSafe, NF: RefUnwindSafe, FutureFn: RefUnwindSafe, SF: RefUnwindSafe, Fut: RefUnwindSafe, Ctx: RefUnwindSafe, <SF as MaybeSleeper>::Sleep: RefUnwindSafe,

§

impl<B, T, E, Ctx, Fut, FutureFn, SF, RF, NF> Send for RetryWithContext<B, T, E, Ctx, Fut, FutureFn, SF, RF, NF>
where RF: Send, NF: Send, FutureFn: Send, SF: Send, Fut: Send, Ctx: Send, <SF as MaybeSleeper>::Sleep: Send,

§

impl<B, T, E, Ctx, Fut, FutureFn, SF, RF, NF> Sync for RetryWithContext<B, T, E, Ctx, Fut, FutureFn, SF, RF, NF>
where RF: Sync, NF: Sync, FutureFn: Sync, SF: Sync, Fut: Sync, Ctx: Sync, <SF as MaybeSleeper>::Sleep: Sync,

§

impl<B, T, E, Ctx, Fut, FutureFn, SF, RF, NF> Unpin for RetryWithContext<B, T, E, Ctx, Fut, FutureFn, SF, RF, NF>
where RF: Unpin, NF: Unpin, FutureFn: Unpin, SF: Unpin, Fut: Unpin, Ctx: Unpin, <SF as MaybeSleeper>::Sleep: Unpin,

§

impl<B, T, E, Ctx, Fut, FutureFn, SF, RF, NF> UnwindSafe for RetryWithContext<B, T, E, Ctx, Fut, FutureFn, SF, RF, NF>
where B: UnwindSafe, RF: UnwindSafe, NF: UnwindSafe, FutureFn: UnwindSafe, SF: UnwindSafe, Fut: UnwindSafe, Ctx: UnwindSafe, <SF as MaybeSleeper>::Sleep: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FutureExt for T
where T: Future + ?Sized,

Source§

fn map<U, F>(self, f: F) -> Map<Self, F>
where F: FnOnce(Self::Output) -> U, Self: Sized,

Map this future’s output to a different type, returning a new future of the resulting type. Read more
Source§

fn map_into<U>(self) -> MapInto<Self, U>
where Self::Output: Into<U>, Self: Sized,

Map this future’s output to a different type, returning a new future of the resulting type. Read more
Source§

fn then<Fut, F>(self, f: F) -> Then<Self, Fut, F>
where F: FnOnce(Self::Output) -> Fut, Fut: Future, Self: Sized,

Chain on a computation for when a future finished, passing the result of the future to the provided closure f. Read more
Source§

fn left_future<B>(self) -> Either<Self, B>
where B: Future<Output = Self::Output>, Self: Sized,

Wrap this future in an Either future, making it the left-hand variant of that Either. Read more
Source§

fn right_future<A>(self) -> Either<A, Self>
where A: Future<Output = Self::Output>, Self: Sized,

Wrap this future in an Either future, making it the right-hand variant of that Either. Read more
Source§

fn into_stream(self) -> IntoStream<Self>
where Self: Sized,

Convert this future into a single element stream. Read more
Source§

fn flatten(self) -> Flatten<Self>
where Self::Output: Future, Self: Sized,

Flatten the execution of this future when the output of this future is itself another future. Read more
Source§

fn flatten_stream(self) -> FlattenStream<Self>
where Self::Output: Stream, Self: Sized,

Flatten the execution of this future when the successful result of this future is a stream. Read more
Source§

fn fuse(self) -> Fuse<Self>
where Self: Sized,

Fuse a future such that poll will never again be called once it has completed. This method can be used to turn any Future into a FusedFuture. Read more
Source§

fn inspect<F>(self, f: F) -> Inspect<Self, F>
where F: FnOnce(&Self::Output), Self: Sized,

Do something with the output of a future before passing it on. Read more
Source§

fn boxed<'a>(self) -> Pin<Box<dyn Future<Output = Self::Output> + Send + 'a>>
where Self: Sized + Send + 'a,

Wrap the future in a Box, pinning it. Read more
Source§

fn boxed_local<'a>(self) -> Pin<Box<dyn Future<Output = Self::Output> + 'a>>
where Self: Sized + 'a,

Wrap the future in a Box, pinning it. Read more
Source§

fn unit_error(self) -> UnitError<Self>
where Self: Sized,

Source§

fn never_error(self) -> NeverError<Self>
where Self: Sized,

Source§

fn poll_unpin(&mut self, cx: &mut Context<'_>) -> Poll<Self::Output>
where Self: Unpin,

A convenience for calling Future::poll on Unpin future types.
Source§

fn now_or_never(self) -> Option<Self::Output>
where Self: Sized,

Evaluates and consumes the future, returning the resulting output if the future is ready after the first call to Future::poll. Read more
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<F> IntoFuture for F
where F: Future,

Source§

type Output = <F as Future>::Output

The output that the future will produce on completion.
Source§

type IntoFuture = F

Which kind of future are we turning this into?
Source§

fn into_future(self) -> <F as IntoFuture>::IntoFuture

Creates a future from a value. Read more
Source§

impl<T> IntoRequest<T> for T

Source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

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

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,

Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T