我是一个 Fedora 用户,目前正在使用 inotify-java 来实现目录轮询。我有以下代码片段:
InotifyEventListener inel = new InotifyEventListener() {
@Override
public void filesystemEventOccurred (InotifyEvent ine) {
// code to handle - done
}
@Override
public void queueFull (EventQueueFull eqf) {
// this is the part when I'm not sure what I should do
}
}