qubit-thread-pool 0.5.0

Dynamic and fixed thread pool executor services for Qubit Rust libraries
Documentation
use std::time::Duration;

use qubit_thread_pool::{
    ExecutorService,
    ThreadPool,
};

pub(crate) fn create_single_worker_pool() -> ThreadPool {
    ThreadPool::new(1).expect("thread pool should be created")
}

pub(crate) fn wait_started(receiver: std::sync::mpsc::Receiver<()>) {
    receiver
        .recv_timeout(Duration::from_secs(1))
        .expect("task should start within timeout");
}

pub(crate) fn wait_until<F>(mut condition: F)
where
    F: FnMut() -> bool,
{
    let deadline = std::time::Instant::now() + Duration::from_secs(2);
    while std::time::Instant::now() < deadline {
        if condition() {
            return;
        }
        std::thread::sleep(Duration::from_millis(10));
    }
    assert!(condition(), "condition should become true within timeout");
}

#[test]
fn test_dynamic_module_exports_thread_pool_entrypoint() {
    let pool = ThreadPool::new(1).expect("dynamic thread pool should build");

    assert_eq!(pool.core_pool_size(), 1);
    pool.shutdown();
    pool.wait_termination();
}