lft-rust 0.1.0

A lock-free threadpool implementation. We provide a traditional single queue threadpool and a lock-free threadpool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright @yucwang 2022

#![warn(missing_docs)]

mod single_queue_threadpool;
mod threadpool;

pub use single_queue_threadpool::{ 
    SingleQueueThreadpool,
    single_queue_threadpool_auto_config,
    single_queue_threadpool_builder
};

pub use crate::threadpool::{
    ThreadPool,
    lft_auto_config,
    lft_builder
};