All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.nio.file.Watchable Maven / Gradle / Ivy

package java.nio.file;

import java.io.IOException;

public interface Watchable {
	WatchKey register(WatchService watcher, WatchEvent.Kind[] events, WatchEvent.Modifier... modifiers) throws IOException;

	WatchKey register(WatchService watcher, WatchEvent.Kind... events) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy