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

#103 in Caching

Download history 30925/week @ 2024-07-23 30463/week @ 2024-07-30 36143/week @ 2024-08-06 38758/week @ 2024-08-13 36948/week @ 2024-08-20 39612/week @ 2024-08-27 33230/week @ 2024-09-03 30035/week @ 2024-09-10 26550/week @ 2024-09-17 33762/week @ 2024-09-24 37122/week @ 2024-10-01 25167/week @ 2024-10-08 36195/week @ 2024-10-15 30940/week @ 2024-10-22 31801/week @ 2024-10-29 22457/week @ 2024-11-05

125,035 downloads per month
Used in 167 crates (62 directly)

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