#future #async #inner #restart #how #resolve #value

restartables

Future that restarts an inner future if it doesn't meet a condition

5 unstable releases

0.4.2 Feb 28, 2020
0.4.1 Feb 27, 2020
0.3.0 Feb 27, 2020
0.2.0 Feb 27, 2020
0.1.0 Feb 27, 2020

#1126 in Asynchronous

MIT license

13KB
92 lines

Restartable Futures

Restartables crates.io badge Restartables docs.rs badge

Say, for example, that you want to keep pinging a URL until it returns 200, or five seconds pass. And if the URL does return 200, you'd like to know how long that took.

This library contains a Future wrapper named Restartable. It wraps up a Future you want to retry, and it keeps retrying the future until it passes a Test you provide. If the inner future passes the Test, then the wrapper resolves your value. But if the inner future fails the Test, the wrapper will just restart the future. Assuming the timeout hasn't expired.

To do this, you need to provide three things when instantiating the wrapper:

  • A future to poll
  • A test, i.e. a closure which takes values from the inner future, runs a test on it, and returns Result
  • A factory to make new futures if the previous future resolved a value that failed the test.

The wrapper will also return some metrics, i.e. how much time elapsed before the future resolved, and how many restarts were necessary.

To run the examples,

cargo run --example reqwest
cargo run --example rng

Dependencies

~1.5MB
~34K SLoC