public interface Watcher
Modifier and Type | Method and Description |
---|---|
void |
onCreate(WatchEvent<?> event,
Path currentPath)
文件创建时执行的方法
|
void |
onDelete(WatchEvent<?> event,
Path currentPath)
文件删除时执行的方法
|
void |
onModify(WatchEvent<?> event,
Path currentPath)
文件修改时执行的方法
文件修改可能触发多次 |
void |
onOverflow(WatchEvent<?> event,
Path currentPath)
事件丢失或出错时执行的方法
|
void onCreate(WatchEvent<?> event, Path currentPath)
event
- 事件currentPath
- 事件发生的当前Path路径void onModify(WatchEvent<?> event, Path currentPath)
event
- 事件currentPath
- 事件发生的当前Path路径void onDelete(WatchEvent<?> event, Path currentPath)
event
- 事件currentPath
- 事件发生的当前Path路径void onOverflow(WatchEvent<?> event, Path currentPath)
event
- 事件currentPath
- 事件发生的当前Path路径Copyright © 2024. All rights reserved.