#signal #future #async #tokio #web

bin+lib tokio-shutdown

Wait for a stop signal across multiple threads

6 releases

0.1.5 Dec 8, 2024
0.1.4 May 18, 2023
0.1.3 Aug 19, 2022
0.1.2 May 27, 2022
0.1.0 Feb 1, 2022

#432 in Asynchronous

Download history 170/week @ 2024-12-13 48/week @ 2024-12-20 21/week @ 2024-12-27 195/week @ 2025-01-03 190/week @ 2025-01-10 129/week @ 2025-01-17 190/week @ 2025-01-24 306/week @ 2025-01-31 229/week @ 2025-02-07 220/week @ 2025-02-14 172/week @ 2025-02-21 180/week @ 2025-02-28 203/week @ 2025-03-07 305/week @ 2025-03-14 315/week @ 2025-03-21 185/week @ 2025-03-28

1,031 downloads per month
Used in wazzup

MIT license

11KB
88 lines

Tokio Shutdown

Build Status Repository Documentation

Tiny crate that allows to wait for a stop signal across multiple threads. Helpful mostly in server applications that run indefinitely and need a signal for graceful shutdowns.

Usage

Add tokio-shutdown to your project with cargo add tokio-shutdown (needs cargo-edit) or add it manually to your Cargo.toml:

[dependencies]
tokio-shutdown = "<latest-version>"

In addition, you will need to use the lastest tokio runtime to use this library, as it uses async/await and is bound to this runtime.

Example

For examples check out the basic and streaming, or consult the docs.

License

This project is licensed under MIT License (or http://opensource.org/licenses/MIT).

Dependencies

~3–11MB
~114K SLoC