#shutdown #async

shutdown-async

异步关闭

3个不稳定版本

0.1.1 2023年3月31日
0.1.0 2023年3月30日
0.0.0 2023年3月30日

#2037 in 异步

Download history 1063/week @ 2024-03-14 2113/week @ 2024-03-21 2915/week @ 2024-03-28 1829/week @ 2024-04-04 2910/week @ 2024-04-11 2347/week @ 2024-04-18 2702/week @ 2024-04-25 2372/week @ 2024-05-02 2886/week @ 2024-05-09 2285/week @ 2024-05-16 2366/week @ 2024-05-23 2430/week @ 2024-05-30 2823/week @ 2024-06-06 2613/week @ 2024-06-13 2106/week @ 2024-06-20 1272/week @ 2024-06-27

9,406 每月下载量
用于 tokio-utils

MIT 许可证

13KB
124

Shutdown Async

github crates.io docs.rs build status codecov

一个用于优雅关闭异步应用的库

当您希望在关闭前允许所有飞行中的处理完成以保持一致状态时,这可能很有用。

使用方法

将其添加到您的Cargo.toml中

[dependencies]
shutdown-async = "0.1.1"

您可以使用此库如下

use shutdown_async::ShutdownController;

#[tokio::main]
async fn main() {
  let shutdown = ShutdownController::new();
   
  tokio::task::spawn({
    let mut monitor = shutdown.subscribe();
    async move {
      // Wait for something to happen
      tokio::select! {
       _ = monitor.recv() => { println!("shutdown initiated"); }
       _ = tokio::time::sleep(ONE_YEAR) => { println!("one year has passed!"); }
      }
    }
  });

  shutdown.shutdown().await;
}

static ONE_YEAR: std::time::Duration = std::time::Duration::from_secs(60 * 60 * 24 * 365);

依赖

~2–3MB
~46K SLoC