Package org.zkoss.io

Examples of org.zkoss.io.FileWatchdog.start()


   * @param file the file
   * @param delay the delay in milliseconds to wait between each check.
   */
  public final FileWatchdog configureAndWatch(File file, long delay) {
    FileWatchdog wg = new FileWatchdog(file, delay, new WatchdogCallback());
    wg.start();
    return wg;
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.