futures-retry
A tool that helps you retry your future :) Well, Future
s and Stream
s, to be precise.
It's quite a common task when you need to repeat some action if you've got an error, be it a connection timeout or some temporary OS error.
When you do stuff in a synchronous manner it's quite easy to implement the attempts logic, but when it comes to asynchronous programming you suddenly need to write a fool load of a boilerplate code, introduce state machines and everything.
This library aims to make your life easier and let you write more straightword and nice code, concentrating on buisness logic rathen than on handling all the mess.
I was inspired to write this library after coming over a hyper
issue, and I came to an understanding that the
problem is more common than I used to think.
For examples have a look in the examples/
folder in the git repo.
Suggestions and critiques are welcome!
// ...
use ;
// In this example we use a free function to handle errors, while in your project you have
// more options: for simple cases a simple closure will do, for complex cases you might go
// as far as implementing an `ErrorHandler` trait for a custom type with some complex logic.
async
async
License
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
License: MIT/Apache-2.0