(&mut self, op: &SpatialOp)
| 71 | } |
| 72 | |
| 73 | fn spatial(&mut self, op: &SpatialOp) -> Result<Response, Self::Error> { |
| 74 | Ok(self.core_loop.dispatch_spatial(self.task, self.tid, op)) |
| 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)) |
nothing calls this directly
no test coverage detected