| 270 | } |
| 271 | |
| 272 | bool empty() const final { |
| 273 | ceph_assert(total_priority >= 0); |
| 274 | ceph_assert((total_priority == 0) || !(queue.empty())); |
| 275 | return queue.empty() && high_queue.empty(); |
| 276 | } |
| 277 | |
| 278 | T dequeue() final { |
| 279 | ceph_assert(!empty()); |
no outgoing calls
no test coverage detected