lft_rust/lib.rs
1// Copyright @yucwang 2022
2
3#![warn(missing_docs)]
4
5mod single_queue_threadpool;
6mod threadpool;
7
8pub use single_queue_threadpool::{
9 SingleQueueThreadpool,
10 single_queue_threadpool_auto_config,
11 single_queue_threadpool_builder
12};
13
14pub use crate::threadpool::{
15 ThreadPool,
16 lft_auto_config,
17 lft_builder
18};