parallel_worker 0.1.5

A parallel worker implementation in Rust. Allows to start tasks in parallel and receive the results blocking or non-blocking.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod cell_utils;
pub(crate) use cell_utils::CellUpdate;

mod task_queue;
pub(crate) use task_queue::TaskQueue;

mod work;
pub(crate) use work::Work;

mod worker_state;
pub use worker_state::State;

mod ordered_result;
pub(crate) use ordered_result::OrderedResult;