| 构造器和说明 |
|---|
WatcherChain(Watcher... watchers)
构造
|
| 限定符和类型 | 方法和说明 |
|---|---|
WatcherChain |
addChain(Watcher element)
加入责任链
|
Iterator<Watcher> |
iterator() |
static WatcherChain |
of(Watcher... watchers)
创建观察者链
WatcherChain |
void |
onCreate(WatchEvent<?> event,
Path currentPath)
文件创建时执行的方法
|
void |
onDelete(WatchEvent<?> event,
Path currentPath)
文件删除时执行的方法
|
void |
onModify(WatchEvent<?> event,
Path currentPath)
文件修改时执行的方法
文件修改可能触发多次 |
void |
onOverflow(WatchEvent<?> event,
Path currentPath)
事件丢失或出错时执行的方法
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitforEach, spliteratorpublic WatcherChain(Watcher... watchers)
watchers - 观察者列表public static WatcherChain of(Watcher... watchers)
WatcherChainwatchers - 观察者列表WatcherChainpublic void onCreate(WatchEvent<?> event, Path currentPath)
Watcherpublic void onModify(WatchEvent<?> event, Path currentPath)
Watcherpublic void onDelete(WatchEvent<?> event, Path currentPath)
Watcherpublic void onOverflow(WatchEvent<?> event, Path currentPath)
WatcheronOverflow 在接口中 Watcherevent - 事件currentPath - 事件发生的当前Path路径public WatcherChain addChain(Watcher element)
ChainaddChain 在接口中 Chain<Watcher,WatcherChain>element - 责任链新的环节元素Copyright © 2023. All rights reserved.