troupe 0.1.0

Library for modelling Rust applications with actors
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Re-exports of commonly used items.

pub use crate::{
    async_trait,
    joint::{JointActor, JointClient},
    oneshot_channel,
    scheduler::Scheduler,
    sink::{SinkActor, SinkClient},
    stream::{StreamActor, StreamClient},
    ActorBuilder, ActorState, OneshotReceiver, OneshotSender, Permanent, Transient,
};