Return the minimum ack HLC across all replicas for `array`. Returns `None` if no acks have been recorded for this array (GC must not proceed — it could discard ops that no replica has seen).
(&self, array: &str)
| 232 | /// Returns `None` if no acks have been recorded for this array (GC must |
| 233 | /// not proceed — it could discard ops that no replica has seen). |
| 234 | pub fn min_ack_hlc(&self, array: &str) -> Option<Hlc> { |
| 235 | let cache = self.cache.read().unwrap_or_else(|p| p.into_inner()); |
| 236 | cache.get(array)?.min_ack_hlc() |
| 237 | } |
| 238 | |
| 239 | /// Return a snapshot of the full [`AckVector`] for `array`. |
| 240 | /// |