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
Instead of FileWatcher.startWatching() / stopWatching() we could also have an API to updateWatching() that would simply overwrite the set of watched directories.
Say, we are currently watching ["/usr/local", "/usr/bin"] and we want to watch ["/usr/bin", "/opt"] instead. With the existing APIs the transition requires the client code to diff the two sets and issue two calls:
Instead of
FileWatcher.startWatching()
/stopWatching()
we could also have an API toupdateWatching()
that would simply overwrite the set of watched directories.Say, we are currently watching
["/usr/local", "/usr/bin"]
and we want to watch["/usr/bin", "/opt"]
instead. With the existing APIs the transition requires the client code to diff the two sets and issue two calls:Instead, it could do the following single call:
The text was updated successfully, but these errors were encountered: