Merge pull request #224 from davydotcom/path-asm-update
Update ASM Dependency to 5.2
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
package org.springsource.loaded.agent;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
public interface AbstractFileSystemWatcher {
|
||||
/**
|
||||
* Shutdown the thread.
|
||||
*/
|
||||
public void shutdown();
|
||||
|
||||
/**
|
||||
* Add a new file to the list of those being monitored. If the file is something that can be watched, then this
|
||||
* method will cause the thread to start (if it hasn't already been started).
|
||||
*
|
||||
* @param fileToMonitor the file to start monitor
|
||||
*/
|
||||
public void register(File fileToMonitor);
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.springsource.loaded.agent;
|
||||
|
||||
public class MacOsFileSystemWatcher {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package org.springsource.loaded.agent;
|
||||
|
||||
public class PollingFileSystemWatcher {
|
||||
}
|
||||
Reference in New Issue
Block a user