| 350 | } |
| 351 | |
| 352 | size_t TThreadPool::GetThreadCountReal() const noexcept { |
| 353 | if (!Impl_.Get()) { |
| 354 | return 0; |
| 355 | } |
| 356 | |
| 357 | return Impl_->GetThreadCountReal(); |
| 358 | } |
| 359 | |
| 360 | size_t TThreadPool::GetMaxQueueSize() const noexcept { |
| 361 | if (!Impl_.Get()) { |