Uses of Class
name.pachler.nio.file.WatchKey

Packages that use WatchKey
name.pachler.nio.file The name.pachler.nio.file package provides source-compatible implementation of JDK7's WatchService API. 
 

Uses of WatchKey in name.pachler.nio.file
 

Methods in name.pachler.nio.file that return WatchKey
abstract  WatchKey WatchService.poll()
           
abstract  WatchKey WatchService.poll(long timeout, java.util.concurrent.TimeUnit unit)
           
abstract  WatchKey Path.register(WatchService watcher, WatchEvent.Kind<?>... events)
           
 WatchKey Watchable.register(WatchService watcher, WatchEvent.Kind<?>... events)
          Registers the file system path (a directory) with the given WatchService and provides a WatchKey as a handle for that registration.
abstract  WatchKey Path.register(WatchService watcher, WatchEvent.Kind<?>[] events, WatchEvent.Modifier... modifiers)
           
 WatchKey Watchable.register(WatchService watcher, WatchEvent.Kind<?>[] events, WatchEvent.Modifier... modifiers)
          Registers the file system path (a directory) with the given WatchServiceand provides a WatchKey as a handle for that registration.
abstract  WatchKey WatchService.take()