Rust crate to simplify graceful async shutdowns:
This crate is on crates.io and can be
used by adding it to your dependencies in your project's Cargo.toml
.
toml
[dependencies]
elegant-departure = "0.2"
For a optional tokio integration, you need to enable the tokio feature:
toml
[dependencies]
elegant-departure = { version = "0.2", features = "tokio" }
Examples can be found in the example directory:
select!
Minimal example using the tokio integration:
```rust use std::time::Duration;
async fn worker(name: &'static str) { let guard = elegantdeparture::getshutdown_guard();
println!("[{}] working", name);
guard.wait().await;
println!("[{}] shutting down", name);
tokio::time::sleep(Duration::from_secs(1)).await;
println!("[{}] done", name);
}
async fn main() { tokio::spawn(worker("worker 1")); tokio::spawn(worker("worker 2"));
elegant_departure::tokio::depart()
// Shutdown on Ctrl+C and SIGTERM
.on_termination()
.await
} ```