Skip to main content

qubit_thread_pool/fixed/
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//! Fixed-size thread pool implementation.
11
12mod fixed_thread_pool;
13mod fixed_thread_pool_builder;
14mod fixed_thread_pool_inner;
15mod fixed_thread_pool_state;
16mod fixed_worker;
17mod fixed_worker_runtime;
18
19pub use fixed_thread_pool::FixedThreadPool;
20pub use fixed_thread_pool_builder::FixedThreadPoolBuilder;