A less-stale cached version of the shard-global `upper` frontier. This is the most recently known upper for this shard process-wide, but unlike [Self::upper] it requires a mutex and a clone. This will always be less or equal to the shard-global `upper`.
(&self)
| 265 | /// unlike [Self::upper] it requires a mutex and a clone. This will always be |
| 266 | /// less or equal to the shard-global `upper`. |
| 267 | pub fn shared_upper(&self) -> Antichain<T> { |
| 268 | self.machine.applier.clone_upper() |
| 269 | } |
| 270 | |
| 271 | /// Fetches and returns a recent shard-global `upper`. Importantly, this operation is |
| 272 | /// linearized with write operations. |
no test coverage detected