【Tokio】启动和结束回调

环境

  • Time 2022-01-11
  • Rust 1.57.0
  • Tokio 1.15.0

概念

参考:https://docs.rs/tokio/latest/tokio/runtime/struct.Builder.html

在线程启动和结束时,可以定义一个回调。

示例

main.rs

use std::{io, thread, time::Duration};

use tokio::runtime::Builder;

fn main() -> io::Result<()> {
    let runtime = Builder::new_multi_thread()
        .on(|| println!("thread park")
        .on_thread_stop(|| println!("thread unpark")
        .build()?;

    runtime.spawn(async {
        println!("hello tokio");
    });

    println!("{}", thread::current().name().unwrap());
    runtime.shutdown_timeout(Duration::from_secs(4));
    Ok(())
}

总结

在线程启动和结束的时候,可以定义一个回调函数。

附录

上一篇:配置prometheus监控mysql服务


下一篇:GBase 8a 集群性能优化3-压缩策略