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::{
15    CallResponse, CastResponse, GenServer, GenServerHandle, GenServerInMsg, InitResult,
16    InitResult::NoSuccess, InitResult::Success,
17};
18pub use process::{send, Process, ProcessInfo};
19pub use stream::spawn_listener;
20pub use time::{send_after, send_interval};