| 292 | } |
| 293 | |
| 294 | void DeliverBatchesInOrder(bool slow) { |
| 295 | std::ignore = DeliverInit(slow).Then( |
| 296 | [this, slow] { fragment_scanner_->DeliverBatchesInOrder(slow); }); |
| 297 | } |
| 298 | |
| 299 | Future<> DeliverBatchesRandomly(bool slow, ConcurrentGen* gen) { |
| 300 | return DeliverInit(slow).Then( |
nothing calls this directly
no test coverage detected