【Tokio】任务运行句柄

环境

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

概念

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

handle 方法返回一个可以执行任务的句柄。

示例

main.rs

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

use tokio::runtime::Runtime;

fn main() -> io::Result<()> {
    let runtime = Runtime::new()?;

    let handle = runtime.handle();
    handle.spawn(async {
        println!("hello tokio");
        println!("{}", thread::current().name().unwrap());
    });

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

总结

handle 方法可以获取一个执行任务的句柄。

附录

上一篇:狂神java之 Arrays类介绍和常用方法


下一篇:2017年1月5日 星期四 --出埃及记 Exodus 21:31