(&self, task: &ExecutionTask)
| 11 | |
| 12 | impl CoreLoop { |
| 13 | pub(in crate::data::executor) fn response_ok(&self, task: &ExecutionTask) -> Response { |
| 14 | Response { |
| 15 | request_id: task.request_id(), |
| 16 | status: Status::Ok, |
| 17 | attempt: 1, |
| 18 | partial: false, |
| 19 | payload: Payload::empty(), |
| 20 | watermark_lsn: self.watermark, |
| 21 | error_code: None, |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | pub(in crate::data::executor) fn response_with_payload( |
| 26 | &self, |
no test coverage detected