|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
ExtendedWatchEventModifier.ACCURATE modifier indicates that the WatchKey may not miss events
under any circumstances.
ExtendedWatchEventModifier.FILE_TREE modifier makes a WatchKey recursive.
FileSystem that in turn allows
to create a WatchService instance.
WatchKey has become invalid.
ExtendedWatchEventKind
class with extended watch event kinds and modifier tags that enable
non-standard features, like recursive watches and file rename tracking.WatchService instance by selecting
an implementation that best fits the current platform.
WatchServiceand provides a WatchKey as a handle for that registration.
WatchKey (marks it as non-signalled) so that it's
corresponding WatchService can report it again via it's
WatchService.poll() and WatchService.take() methods.
Bootstrapper.newWatchService()
method will only produce polling watch services.
WatchService
to be monitored for changes via it's register methods.register to
change the way changes to a watchable are reported. jpathwatch
defines a set of modifiers in the ExtendedWatchEventModifier
class.WatchKey represents a Watchable's registration for events with a
WatchService.Watchables, reporting changes
on these objects (in the case of jpathwatch, these are Path
instances).
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||