| 85 | } |
| 86 | |
| 87 | Status RebuildPoolWithMinMax(int min_threads, int max_threads) { |
| 88 | return ThreadPoolBuilder(kDefaultPoolName) |
| 89 | .set_min_threads(min_threads) |
| 90 | .set_max_threads(max_threads) |
| 91 | .Build(&pool_); |
| 92 | } |
| 93 | |
| 94 | Status RebuildPoolWithScheduler(int min_threads, int max_threads, int period_ms = 100) { |
| 95 | return ThreadPoolBuilder(kDefaultPoolName) |
nothing calls this directly
no test coverage detected