10 releases

Uses old Rust 2015

0.1.9 Feb 20, 2018
0.1.8 Sep 28, 2017
0.1.7 Feb 18, 2016
0.1.6 Aug 24, 2015

#277 in Concurrency

Download history 52888/week @ 2023-10-22 57048/week @ 2023-10-29 59041/week @ 2023-11-05 71429/week @ 2023-11-12 56607/week @ 2023-11-19 61139/week @ 2023-11-26 54710/week @ 2023-12-03 50692/week @ 2023-12-10 52217/week @ 2023-12-17 19311/week @ 2023-12-24 37660/week @ 2023-12-31 45324/week @ 2024-01-07 43983/week @ 2024-01-14 51873/week @ 2024-01-21 53854/week @ 2024-01-28 46287/week @ 2024-02-04

198,417 downloads per month
Used in fewer than 57 crates

MIT license

19KB
355 lines

scoped-threadpool-rs

Travis-CI Status

A library for scoped and cached threadpools.

For more details, see the docs.

Getting Started

scoped-threadpool-rs is available on crates.io. Add the following dependency to your Cargo manifest to get the latest version of the 0.1 branch:

[dependencies]

scoped_threadpool = "0.1.*"

To always get the latest version, add this git repository to your Cargo manifest:

[dependencies.scoped_threadpool]
git = "https://github.com/Kimundi/scoped-threadpool-rs"

Example

extern crate scoped_threadpool;
use scoped_threadpool::Pool;

fn main() {
    // Create a threadpool holding 4 threads
    let mut pool = Pool::new(4);

    let mut vec = vec![0, 1, 2, 3, 4, 5, 6, 7];

    // Use the threads as scoped threads that can
    // reference anything outside this closure
    pool.scoped(|scoped| {
        // Create references to each element in the vector ...
        for e in &mut vec {
            // ... and add 1 to it in a seperate thread
            scoped.execute(move || {
                *e += 1;
            });
        }
    });

    assert_eq!(vec, vec![1, 2, 3, 4, 5, 6, 7, 8]);
}

No runtime deps