com.legyver.fenxlib.widgets.filetree.scan.FileSystemEventHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fenxlib.widgets.filetree Show documentation
Show all versions of fenxlib.widgets.filetree Show documentation
FileTree widget for Fenxlib projects
package com.legyver.fenxlib.widgets.filetree.scan;
import com.legyver.fenxlib.widgets.filetree.registry.FileTreeRegistry;
/**
* Handle filesystem events triggered when a watched folder or file has a directory or file created under it, or is otherwise renamed/updated/deleted.
*/
public interface FileSystemEventHandler {
/**
* Handle the filesystem event
* @param fileTreeRegistry the registry to register the file with in the event of a CREATE event
* @param fileSystemEvent the event information
*/
void handle(FileTreeRegistry fileTreeRegistry, FileSystemEvent fileSystemEvent);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy