(&mut self, op: &KvOp)
| 75 | } |
| 76 | |
| 77 | fn kv(&mut self, op: &KvOp) -> Result<Response, Self::Error> { |
| 78 | Ok(self.core_loop.dispatch_kv(self.task, self.tid, op)) |
| 79 | } |
| 80 | |
| 81 | fn cluster_array(&mut self, _op: &ClusterArrayOp) -> Result<Response, Self::Error> { |
| 82 | unreachable!("ClusterArray plans must not be dispatched to the Data Plane") |
nothing calls this directly
no test coverage detected