wasm-compatible retry interfaces for fallible Rustlang std library Futures
A goal of any operation should be a successful outcome. This crate gives operations a better chance at achieving that.
In your Cargo.toml file, add the following under the [dependencies]
heading
toml
again = "0.1"
For very simple cases you can use the module level retry
function
to retry a potentially fallible operation.
```rust use std::error::Error;
async fn main() -> Result<(), Box
You may not want to retry every kind of error. For preciseness you can be more explicit in which kinds of errors should be retried with the module level retry_if
function.
```rust use std::error::Error;
async fn main() -> Result<(), Box
You can also customize retry behavior to suit your applications needs
with a configurable and reusable RetryPolicy
.
```rust use std::error::Error; use std::time::Duration; use again::RetryPolicy;
async fn main() -> Result<(), Box
See the docs for more examples.
Doug Tangren (softprops) 2020