yaaf 0.2.0

Yet Another Actor Framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Useful imports for most use-cases.

pub use crate::{
    actor::{Actor, Tell},
    context::{Context, Publish},
    handler::Handler,
    source::Source,
    system::System,
};
pub use ::async_trait::async_trait;
pub use ::yaaf_macros::{Actor, Source};