mirror of
https://github.com/encounter/notify.git
synced 2026-03-30 11:31:42 -07:00
03ac300d36
There isn't `monitor_full.rs` and I assume `debouncer_full.rs` is the correct name.
1.1 KiB
1.1 KiB
Examples for notify and the debouncers.
Notify
- monitor_raw basic example for using notify
- async_monitor example for using
futures::channelto receive events in async code - poll_sysfs example for observing linux
/sysevents using PollWatcher and the hashing mode - watcher_kind example for detecting the kind of watcher used and running specific configurations
- hot_reload_tide large example for async notify using the crates tide and async-std
- pollwatcher_scan example using
PollWatcher::with_initial_scanto listen for files found during initial scanning - pollwatcher_manual example using
PollWatcher::pollwithout automatic polling for manual triggered polling
Notify Debouncer Full (debouncer)
- monitor_debounced basic usage example for the debouncer
- debouncer_full advanced usage accessing the internal file ID cache
Debouncer Mini (mini debouncer)
- debouncer_mini basic usage example for the mini debouncer
- debouncer_mini_custom using the mini debouncer with a specific backend (PollWatcher)