返回介绍

1. 运行时

发布于 2024-10-13 11:25:33 字数 1438 浏览 0 评论 0 收藏 0

异步运行时(asynchronous runtime),基于事件驱动(event-driven, epoll ...)的非阻塞平台,内部包括调度器(scheduler)和定时器(timer)等组成部分。建立在 async/await Future 基础之上,专为 IO 密集型应用而设计。

  • 多线程调度器。
  • 异步版标准库。

添加依赖,按需选择模块:

# Cargo.toml

[dependencies]
tokio = { version = "1", features = ["full"] }

参考 API Feature flags 说明,可缩减编译模块数量,提升速度。

以宏标记异步入口函数,其目的是启动运行时。

#[tokio::main]
async fn main() {
  println!("hello");
}

/*

fn main() {
  let mut rt = tokio::runtime::Runtime::new().unwrap();
  rt.block_on(async {
    println!("hello");
  })
}

*/

默认使用多线程调度器,可以参数配置。

// defaults to the number of cpus on the system.

#[tokio::main(worker_threads = 2)]
async fn main() {
  println!("Hello world");
}
// single-threaded

#[tokio::main(flavor = "current_thread")]
async fn main() {
  println!("Hello world");
}

基本使用方式与上卷所述一致。

async fn world() {
  println!("world");
}

#[tokio::main]
async fn main() {
  let w = world();  // Future
  print!("hello ");
  w.await;      // execute & wait
}

// hello world

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文