#actor #thread #synchronization

actors

为 Rust 提供类似 actor 的并发功能

1 个不稳定版本

使用旧的 Rust 2015

0.1.0 2015 年 5 月 25 日

86#synchronization

BSD-3-Clause

6KB
136

actors

一个为 Rust 提供类似 actor 消息并发功能的库。

Build Status

API 文档

目标

  • 基于消息的状态操作。
  • 通过允许 actor 监督来处理失败。
  • 轻量级:每个 actor 应该只消耗少量资源。
  • 在线程池上高效地多路复用 actor 执行。
  • 可组合:不要试图一次解决所有问题。
  • Rusty:使用这门美丽语言的功能。

非目标

  • 作为本库一部分的透明网络通信/分发。

使用(尚未实现)

将其添加到您的 Cargo.toml

[dependencies]

actors = "0.1"

lib.rs:

Rust 的类似 actor 并发。

无运行时依赖