tiny_actor/actor/
mod.rs

1//! Module containing all the different parts of the actor and their spawn functions.
2//! The most important of these are: [Child], [ChildPool], [Address] and [Inbox] with
3//! [spawn], [spawn_one] and [spawn_many]. Ready documentation on their respective parts
4//! for more information.
5
6mod address;
7mod child;
8mod child_pool;
9mod inbox;
10mod spawning;
11mod shutdown;
12
13pub use address::*;
14pub use child::*;
15pub use child_pool::*;
16pub use inbox::*;
17pub use spawning::*;
18pub use shutdown::*;