spawned_concurrency/threads/mod.rs
1//! spawned concurrency
2//! IO threads-based traits and structs to implement concurrent code à-la-Erlang.
3
4mod gen_server;
5mod process;
6mod stream;
7mod time;
8
9#[cfg(test)]
10mod timer_tests;
11
12pub use gen_server::{CallResponse, CastResponse, GenServer, GenServerHandle, GenServerInMsg};
13pub use process::{send, Process, ProcessInfo};
14pub use stream::spawn_listener;
15pub use time::{send_after, send_interval};