Package net.morimekta.util
Interface FileWatcher.Watcher
-
- All Superinterfaces:
FileWatcher.Listener
- Enclosing class:
- FileWatcher
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@Deprecated @FunctionalInterface public static interface FileWatcher.Watcher extends FileWatcher.Listener
Deprecated.UseFileWatcher.Listenerinstead.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description voidonFileUpdate(java.io.File file)Deprecated.default voidonPathUpdate(java.nio.file.Path path)Deprecated.Called when the requested file path is updated.
-
-
-
Method Detail
-
onFileUpdate
void onFileUpdate(java.io.File file)
Deprecated.
-
onPathUpdate
default void onPathUpdate(java.nio.file.Path path)
Deprecated.Description copied from interface:FileWatcher.ListenerCalled when the requested file path is updated.- Specified by:
onPathUpdatein interfaceFileWatcher.Listener- Parameters:
path- Path to the file updated.
-
-