| 83 | } |
| 84 | |
| 85 | Status StartProducing() override { |
| 86 | if (start_producing_) { |
| 87 | RETURN_NOT_OK(start_producing_(this)); |
| 88 | } |
| 89 | started_ = true; |
| 90 | return Status::OK(); |
| 91 | } |
| 92 | |
| 93 | void PauseProducing(ExecNode* output, int32_t counter) override { |
| 94 | ASSERT_NE(output_, nullptr) << "Sink nodes should not experience backpressure"; |
no test coverage detected