Crates.io | scoped_threadpool |
lib.rs | scoped_threadpool |
version | 0.1.9 |
source | src |
created_at | 2015-08-22 13:43:25.266977 |
updated_at | 2018-02-20 21:53:55.075569 |
description | A library for scoped and cached threadpools. |
homepage | |
repository | https://github.com/Kimundi/scoped-threadpool-rs |
max_upload_size | |
id | 2895 |
size | 24,006 |
A library for scoped and cached threadpools.
For more details, see the docs.
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"
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]);
}