#thread-pool #future #computation #hand #results #cpupool

futures-cpupool

An implementation of thread pools which hand out futures to the results of the computation on the threads themselves

8 releases

Uses old Rust 2015

0.1.8 Jan 2, 2018
0.1.7 Oct 12, 2017
0.1.6 Sep 14, 2017
0.1.5 Mar 21, 2017
0.1.0 Aug 1, 2016

#27 in #hand

Download history 21798/week @ 2023-12-12 14412/week @ 2023-12-19 10701/week @ 2023-12-26 15982/week @ 2024-01-02 18402/week @ 2024-01-09 19430/week @ 2024-01-16 18004/week @ 2024-01-23 18366/week @ 2024-01-30 19457/week @ 2024-02-06 22133/week @ 2024-02-13 24473/week @ 2024-02-20 22704/week @ 2024-02-27 23840/week @ 2024-03-05 24103/week @ 2024-03-12 22216/week @ 2024-03-19 18346/week @ 2024-03-26

92,737 downloads per month
This crate has lost popularity

MIT/Apache

71KB
991 lines

futures-cpupool

A library for creating futures representing work happening concurrently on a dedicated thread pool.

Build Status Build status

Documentation

Usage

First, add this to your Cargo.toml:

[dependencies]
futures = "0.1"
futures-cpupool = "0.1"

Next, add this to your crate:

extern crate futures;
extern crate futures_cpupool;

use futures_cpupool::CpuPool;

License

futures-cpupool is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0), with portions covered by various BSD-like licenses.

See LICENSE-APACHE, and LICENSE-MIT for details.


lib.rs:

A simple crate for executing work on a thread pool, and getting back a future.

This crate provides a simple thread pool abstraction for running work externally from the current thread that's running. An instance of Future is handed back to represent that the work may be done later, and further computations can be chained along with it as well.

extern crate futures;
extern crate futures_cpupool;

use futures::Future;
use futures_cpupool::CpuPool;


// Create a worker thread pool with four threads
let pool = CpuPool::new(4);

// Execute some work on the thread pool, optionally closing over data.
let a = pool.spawn(long_running_future(2));
let b = pool.spawn(long_running_future(100));

// Express some further computation once the work is completed on the thread
// pool.
let c = a.join(b).map(|(a, b)| a + b).wait().unwrap();

// Print out the result
println!("{:?}", c);

Dependencies