(
&self,
task: &ExecutionTask,
payload: &[u8],
)
| 13 | |
| 14 | impl CoreLoop { |
| 15 | pub(in crate::data::executor) fn execute_wal_append( |
| 16 | &self, |
| 17 | task: &ExecutionTask, |
| 18 | payload: &[u8], |
| 19 | ) -> Response { |
| 20 | debug!(core = self.core_id, len = payload.len(), "wal append"); |
| 21 | self.response_ok(task) |
| 22 | } |
| 23 | |
| 24 | pub(in crate::data::executor) fn execute_cancel( |
| 25 | &mut self, |
no test coverage detected