Attach a post-apply observer (used by `ArrayFanout` for Lite fan-out).
(mut self, observer: Arc<dyn ArrayApplyObserver>)
| 152 | |
| 153 | /// Attach a post-apply observer (used by `ArrayFanout` for Lite fan-out). |
| 154 | pub fn with_observer(mut self, observer: Arc<dyn ArrayApplyObserver>) -> Self { |
| 155 | self.apply_observer = Some(observer); |
| 156 | self |
| 157 | } |
| 158 | |
| 159 | // ─── Delta ─────────────────────────────────────────────────────────────── |
| 160 |
no outgoing calls
no test coverage detected