Uses of Interface
java.nio.file.WatchService
-
Packages that use WatchService 软件包 描述 java.nio.file 定义Java虚拟机访问文件,文件属性和文件系统的接口和类。 -
-
Uses of WatchService in java.nio.file
Methods in java.nio.file that return WatchService Modifier and Type 方法 描述 abstract WatchService
FileSystem. newWatchService()
构造新的WatchService
(可选操作) 。Methods in java.nio.file with parameters of type WatchService Modifier and Type 方法 描述 default WatchKey
Path. register(WatchService watcher, WatchEvent.Kind<?>... events)
使用手表服务注册此路径所在的文件。WatchKey
Path. register(WatchService watcher, WatchEvent.Kind<?>[] events, WatchEvent.Modifier... modifiers)
使用手表服务注册此路径所在的文件。WatchKey
Watchable. register(WatchService watcher, WatchEvent.Kind<?>... events)
用手表服务注册一个对象。WatchKey
Watchable. register(WatchService watcher, WatchEvent.Kind<?>[] events, WatchEvent.Modifier... modifiers)
用手表服务注册一个对象。
-