| 93 | } |
| 94 | |
| 95 | std::string ListenableArbitrator::toString() const { |
| 96 | return fmt::format( |
| 97 | "ARBITRATOR[{}] CAPACITY {} {}", |
| 98 | kind_, |
| 99 | bolt::succinctBytes(capacity()), |
| 100 | stats().toString()); |
| 101 | } |
| 102 | |
| 103 | bool ListenableArbitrator::growPoolLocked( |
| 104 | bolt::memory::MemoryPool* pool, |
no test coverage detected