| 248 | } |
| 249 | |
| 250 | void Queue::AdjustWaterLevels() { |
| 251 | high_water_ = static_cast<uint64_t>(size_ * kHighWaterRatio); |
| 252 | low_water_ = static_cast<uint64_t>(size_ * kLowWaterRatio); |
| 253 | } |
| 254 | |
| 255 | CheckConstraintResult Queue::CheckModuleConstraints() const { |
| 256 | CheckConstraintResult status = CHECK_OK; |
nothing calls this directly
no outgoing calls
no test coverage detected