ascolt 0.1.11

Async runtime-agnostic actor framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod error;
pub mod handler;
mod log;
pub mod macros;
pub mod messaging;
pub mod supervision;

pub use handler::AskHandlerTrait;
pub use handler::TellHandlerTrait;
pub use messaging::bounded_channel;
pub use messaging::unbounded_channel;
pub use supervision::ActorTrait;
pub use supervision::CommandMessage;
pub use supervision::run;

#[cfg(feature = "macros")]
pub use ascolt_macros::*;