| 334 | TThreadPool::~TThreadPool() = default; |
| 335 | |
| 336 | size_t TThreadPool::Size() const noexcept { |
| 337 | if (!Impl_.Get()) { |
| 338 | return 0; |
| 339 | } |
| 340 | |
| 341 | return Impl_->Size(); |
| 342 | } |
| 343 | |
| 344 | size_t TThreadPool::GetThreadCountExpected() const noexcept { |
| 345 | if (!Impl_.Get()) { |
no test coverage detected