tyra 1.0.0

Typed Actor System
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod actor_error;
pub mod actor_system;
pub mod delay_actor;
pub mod internal_actor_manager;
pub mod system_state;
mod thread_pool_manager;
pub mod wakeup_manager;

pub mod prelude {
    pub use crate::system::actor_error::ActorError;
    pub use crate::system::actor_system::ActorSystem;
}