(&mut self, id: GlobalId)
| 337 | } |
| 338 | |
| 339 | fn remove_collection(&mut self, id: GlobalId) { |
| 340 | // Remove per-replica collection state. |
| 341 | for replica in self.replicas.values_mut() { |
| 342 | replica.remove_collection(id); |
| 343 | } |
| 344 | |
| 345 | // Remove global collection state. |
| 346 | self.collections.remove(&id); |
| 347 | } |
| 348 | |
| 349 | fn add_replica_state( |
| 350 | &mut self, |
no test coverage detected