act_rs 0.5.0

Act.rs is a minimal actor framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//!
//! std::Thread based actors
//! 

mod thread_actor;

pub use thread_actor::*;

#[cfg(test)]
mod thread_actor_tests;