| 297 | } |
| 298 | |
| 299 | Future<> DeliverBatchesRandomly(bool slow, ConcurrentGen* gen) { |
| 300 | return DeliverInit(slow).Then( |
| 301 | [this, slow, gen] { fragment_scanner_->DeliverBatchesRandomly(slow, gen); }); |
| 302 | } |
| 303 | |
| 304 | bool has_inspected() { return has_inspected_; } |
| 305 | bool has_started() { return has_started_; } |
nothing calls this directly
no test coverage detected