actors

Crates.ioactors
lib.rsactors
version0.1.0
sourcesrc
created_at2015-05-25 13:58:11.992455
updated_at2015-12-11 23:57:25.953017
descriptionProvides actor-like concurrency for Rust
homepagehttps://github.com/kolloch/actors
repositoryhttps://github.com/kolloch/actors
max_upload_size
id2201
size7,806
Peter Kolloch (kolloch)

documentation

https://kolloch.github.io/actors/doc/actors/index.html

README

actors

A rust library to provide actor-like message-based concurrency.

Build Status

API Documentation

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"
Commit count: 26

cargo fmt