notify
notify copied to clipboard
Add iterator to watcher
To enable this API:
for event in &watcher {
// ...
}
Explicitly available with .iter() as idiomatic.
Question is what do we do when you block the watcher ? Simply buffer the events or just drop them ? Also this may be different between debounced and edge watcher ?