/*******************************************************************************
*
* Copyright (c) 2025 - 2026 Haixing Hu.
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0.
*
******************************************************************************/
//! Thread pool implementation. Each source file is named after the single
//! public type it defines (snake_case), except private helper types split into
//! their own similarly named files.
// 子模块 `thread_pool` 存放公开类型 `ThreadPool`,与父模块同名是刻意分层;避免 clippy::module_inception 误报
pub use PoolJob;
pub use ThreadPool;
pub use ThreadPoolBuildError;
pub use ThreadPoolBuilder;
pub use ThreadPoolStats;