Crate workers_pool

Source
Expand description

A worker pool used for parallel computing of a large number of relatively small tasks.

Tasks are computed on separate threads and are given read-only access to a common context.

Threads are spawned at creation and do not currently recover from panics.

Structs§

WorkersPool
Abstraction of a threadpool for executing units of computation in parallel.

Traits§

Worker
Abstraction of a worker that can execute computations