(&mut self, op: &VectorOp)
| 35 | } |
| 36 | |
| 37 | fn vector(&mut self, op: &VectorOp) -> Result<Response, Self::Error> { |
| 38 | Ok(self.core_loop.dispatch_vector(self.task, op)) |
| 39 | } |
| 40 | |
| 41 | fn crdt(&mut self, op: &CrdtOp) -> Result<Response, Self::Error> { |
| 42 | Ok(self.core_loop.dispatch_crdt(self.task, op)) |
nothing calls this directly
no test coverage detected