Right now RecursiveDirectoryMonitor observers will get notified of every change affecting any of the observed locations (across all observers). This means that those observers will necessarily end up doing more work than they need to.
We should be able to associate discovered URLs with the observer context that yielded them and then use this to determine which observers to dispatch notifications to.
Right now
RecursiveDirectoryMonitor
observers will get notified of every change affecting any of the observed locations (across all observers). This means that those observers will necessarily end up doing more work than they need to.We should be able to associate discovered URLs with the observer context that yielded them and then use this to determine which observers to dispatch notifications to.