(&self, path: impl AsRef<Path>)
| 123 | } |
| 124 | |
| 125 | pub(crate) fn on_cache_update_async(&self, path: impl AsRef<Path>) { |
| 126 | self.state.misses.fetch_add(1, SeqCst); |
| 127 | self.worker.on_cache_update_async(path) |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | #[derive(Default, Debug)] |
no outgoing calls