Package org.apache.niolex.commons.file

Examples of org.apache.niolex.commons.file.FileMonitor$EventListener


     * @throws IOException If error reading this file.
     */
    public ReloadablePropertiesWrapper(String fileName, int monitorInterval) throws IOException {
        super(fileName);
        this.fileName = fileName;
        monitor = new FileMonitor(monitorInterval, fileName);
        monitor.addListener(this);
    }
View Full Code Here

TOP

Related Classes of org.apache.niolex.commons.file.FileMonitor$EventListener

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.