8 releases

0.2.4 Apr 1, 2022
0.2.3 Mar 24, 2022
0.2.2 Feb 26, 2022
0.1.4 Feb 22, 2022
0.1.2 Dec 23, 2020

#394 in Asynchronous

Download history 45/week @ 2023-12-15 47/week @ 2023-12-22 43/week @ 2023-12-29 34/week @ 2024-01-05 51/week @ 2024-01-12 26/week @ 2024-01-19 17/week @ 2024-01-26 14/week @ 2024-02-02 35/week @ 2024-02-09 48/week @ 2024-02-16 42/week @ 2024-02-23 52/week @ 2024-03-01 61/week @ 2024-03-08 46/week @ 2024-03-15 67/week @ 2024-03-22 124/week @ 2024-03-29

305 downloads per month
Used in 14 crates (2 directly)

Apache-2.0

29KB
385 lines

safina-threadpool

crates.io version license: Apache 2.0 unsafe forbidden pipeline status

A threadpool.

You can use it alone or with safina, a safe async runtime.

Features

  • Add a closure or FnOnce to the pool and one of the threads will execute it
  • Automatically restarts panicked threads
  • Retries after failing to spawn a thread
  • Drop the ThreadPool struct to stop all idle threads.
  • Destroy the pool and wait for all threads to stop
  • forbid(unsafe_code)
  • Depends only on std
  • 100% test coverage

Limitations

  • Not optimized

Examples

let pool =
    safina_threadpool::ThreadPool::new("worker", 2).unwrap();
let receiver = {
    let (sender, receiver) =
        std::sync::mpsc::channel();
    for data in data_source {
        let sender_clone = sender.clone();
        pool.schedule(
            move || process_data(data, sender_clone));
    }
    receiver
};
let results: Vec<ProcessResult> =
    receiver.iter().collect();
// ...

Alternatives

Changelog

Changelog
  • v0.2.4 - Update docs.
  • v0.2.3 - Implement From<NewThreadPoolError> and From<TryScheduleError> for std::io::Error.
  • v0.2.2 - Add ThreadPool::join and ThreadPool::try_join.
  • v0.2.1 - Improve test coverage.
  • v0.2.0
    • ThreadPool::new to return Result.
    • ThreadPool::try_schedule to return an error when it fails to restart panicked threads.
    • ThreadPool::schedule to handle failure starting replacement threads.
  • v0.1.4 - Stop threads on drop.
  • v0.1.3 - Support stable Rust! Needs 1.51+.
  • v0.1.2 - Add another example
  • v0.1.1 - Simplified internals and improved documentation.
  • v0.1.0 - First release

TO DO

  • Make join and try_join work with Arc<ThreadPool>.
  • Log a warning when all threads panicked.
  • Update test coverage.
  • Add a public respawn_threads function.
  • Add a stress test
  • Add a benchmark. See benchmarks in https://crates.io/crates/executors
  • Add a way for a job to schedule another job on the same thread, with stealing.

License: Apache-2.0

No runtime deps