Skip to main content

eventually_with

Function eventually_with 

Source
pub fn eventually_with<F, Fut>(
    timeout: Duration,
    backoff: Backoff,
    probe: F,
) -> impl Future<Output = Result<(), TestError>>
where F: FnMut() -> Fut + RuntimeAvailable, Fut: Future<Output = bool>,
Expand description

eventually with an explicit Backoff schedule instead of the default.