spawned_concurrency/tasks/
mod.rs

1//! spawned concurrency
2//! Runtime tasks-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 stream_tests;
11#[cfg(test)]
12mod timer_tests;
13
14pub use gen_server::{CallResponse, CastResponse, GenServer, GenServerHandle, GenServerInMsg};
15pub use process::{send, Process, ProcessInfo};
16pub use stream::spawn_listener;
17pub use time::{send_after, send_interval};