You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use notify-rs in my VRC-LOG project here and here
I'm on Windows 11 23H2 using the latest version of notify-rs and my program stops getting events after about 10–30 minutes, do you know what might be causing this? This has been a problem since the start of my project, it's not new.
I tried adding prints to the callbacks, but they just stopped getting events altogether.
EDIT: Though I ignore send errors now, I previously unwrapped and never found an exception.
The text was updated successfully, but these errors were encountered:
Looks like a duplicate of #482. You have to keep the watcher around. Dropping it like here stops the event loop. See also variable scopes for why your watcher is gone at the end of that scope/function.
I use
notify-rs
in myVRC-LOG
project here and hereI'm on
Windows 11 23H2
using the latest version ofnotify-rs
and my program stops getting events after about 10–30 minutes, do you know what might be causing this? This has been a problem since the start of my project, it's not new.I tried adding prints to the callbacks, but they just stopped getting events altogether.
EDIT: Though I ignore send errors now, I previously unwrapped and never found an exception.
The text was updated successfully, but these errors were encountered: