3 unstable releases

0.3.2 Jun 27, 2023
0.3.1 Jun 26, 2023
0.2.2 Jun 26, 2023
0.1.0 Jun 25, 2023

#370 in Concurrency

Download history 2/week @ 2024-02-21 6/week @ 2024-02-28 1/week @ 2024-03-06 1/week @ 2024-03-13 3/week @ 2024-03-20 4/week @ 2024-03-27 10/week @ 2024-04-03 77/week @ 2024-04-10

94 downloads per month

Apache-2.0

33KB
539 lines

Rust Threadpool Executor

crate.io-version docs.rs-build

A simple thread pool for running jobs on the worker threads. You can specify the core workers which will live as long as the thread pool , maximum workers which will live with a given keep alive time, and the policy when the jobs submited exceed the maximum size of the workers.

Usage

Create a fix size thread pool and when the job submited will wait when all workers are busy:

let pool = threadpool_executor::ThreadPool::new(1);
let mut expectation = pool.execute(|| {"hello, thread pool!"}).unwrap();
assert_eq!(expectation.get_result().unwrap(), "hello, thread pool!");

You can handle wait the result for a specifid time:

let pool = threadpool_executor::ThreadPool::new(1);
let r = pool.execute(|| {
    std::thread::sleep(std::time::Duration::from_secs(10));
});
let res = r.unwrap().get_result_timeout(std::time::Duration::from_secs(3));
assert!(res.is_err());
if let Err(err) = res {
    matches!(err.kind(), threadpool_executor::error::ErrorKind::TimeOut);
}

Use Builder to create a thread pool:

let pool = threadpool_executor::threadpool::Builder::new()
        .core_pool_size(1)
        .maximum_pool_size(3)
        .keep_alive_time(std::time::Duration::from_secs(300))
        .exeed_limit_policy(threadpool_executor::threadpool::ExceedLimitPolicy::Wait)
        .build();

The workers runs in this thread pool will try to catch the Panic! using the std::panic::catch_unwind in the functions you submit, if catched, the get_result method will give you a Panic kind ExecutorError.

let pool = threadpool_executor::ThreadPool::new(1);
let r = pool.execute(|| {
    panic!("panic!!!");
});
let res = r.unwrap().get_result();
assert!(res.is_err());
if let Err(err) = res {
    matches!(err.kind(), threadpool_executor::error::ErrorKind::Panic);
}

You can cancel the task when it's waiting in line. The task cannot be cancelled when it's started running.

let pool = threadpool_executor::ThreadPool::new(1);
pool.execute(|| {
    std::thread::sleep(std::time::Duration::from_secs(3));
}).unwrap();
let mut exp = pool.execute(|| {}).unwrap();
exp.cancel();

Dependencies

~435KB