| 606 | } |
| 607 | |
| 608 | void TAdaptiveThreadPool::SetMaxIdleTime(TDuration interval) { |
| 609 | Y_ENSURE_EX(Impl_.Get(), TThreadPoolException() << TStringBuf("mtp queue not started")); |
| 610 | |
| 611 | Impl_->SetMaxIdleTime(interval); |
| 612 | } |
| 613 | |
| 614 | TSimpleThreadPool::~TSimpleThreadPool() { |
| 615 | try { |
no test coverage detected