Skip to main content

qubit_thread_pool/dynamic/
mod.rs

1/*******************************************************************************
2 *
3 *    Copyright (c) 2025 - 2026 Haixing Hu.
4 *
5 *    SPDX-License-Identifier: Apache-2.0
6 *
7 *    Licensed under the Apache License, Version 2.0.
8 *
9 ******************************************************************************/
10//! Dynamic thread pool implementation.
11
12mod thread_pool;
13mod thread_pool_builder;
14pub(crate) mod thread_pool_config;
15pub(crate) mod thread_pool_inner;
16pub(crate) mod thread_pool_state;
17pub(crate) mod thread_pool_worker;
18pub(crate) mod thread_pool_worker_queue;
19pub(crate) mod thread_pool_worker_runtime;
20
21pub use thread_pool::ThreadPool;
22pub use thread_pool_builder::ThreadPoolBuilder;