| 9 | #include "UThreadPool.h" |
| 10 | |
| 11 | CGRAPH_NAMESPACE_BEGIN |
| 12 | |
| 13 | UThreadPool::UThreadPool(const CBool autoInit, const UThreadPoolConfig& config) noexcept { |
| 14 | cur_index_ = 0; |
| 15 | is_init_ = false; |
| 16 | this->setConfig(config); // setConfig 函数,用在 is_init_ 设定之后 |
| 17 | if (autoInit) { |
| 18 | this->init(); |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | |
| 23 | UThreadPool::~UThreadPool() { |