私は現在 inotify-java を使用してディレクトリ ポーリングを実装している Fedora ユーザーです。次のコード スニペットがあります。
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
}
}