*
* @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;
}