Watch filesystem events on queue.yaml
instead of polling every 3 secs
#10
Labels
enhancement
New feature or request
queue.yaml
instead of polling every 3 secs
#10
Currently, when
queue.yaml
is empty, the scheduling loop just sleeps for three seconds and re-checks if there's any new commands. This is less responsive and it's basically polling.Crates like
notify
does filesystem watching, but it's not async. Especially, since its watcher takesstd::sync::mpsc::{Sender, Receiver}
in its constructor and those are!Sync
.The text was updated successfully, but these errors were encountered: