| 94 | } |
| 95 | |
| 96 | Status StartProducing() override { |
| 97 | if (start_producing_) { |
| 98 | RETURN_NOT_OK(start_producing_(this)); |
| 99 | } |
| 100 | started_ = true; |
| 101 | return Status::OK(); |
| 102 | } |
| 103 | |
| 104 | void PauseProducing(ExecNode* output, int32_t counter) override { |
| 105 | ASSERT_NE(output_, nullptr) << "Sink nodes should not experience backpressure"; |
no test coverage detected