1 unstable release
Uses old Rust 2015
0.1.0 | May 25, 2015 |
---|
#1116 in Concurrency
6KB
136 lines
actors
A rust library to provide actor-like message-based concurrency.
Goals:
- Message-based state manipulation.
- Deal with failure by allowing actor supervision.
- Light-weighed: Each actor should consume only few resources.
- Multi-plex actor execution efficiently upon thread-pools.
- Composable: Do not try to solve everything at once.
- Rusty: Use features available in this beautiful language.
Non-Goals:
- Transparent network communication/distribution as part of this library.
Usage (NOT THERE YET ;) )
Add this to your Cargo.toml
:
[dependencies]
actors = "0.1"
lib.rs
:
Actor-like concurrency for rust.