@ManagedResource(description="Managed FileWatcherReloadStrategy") public class FileWatcherReloadStrategy extends ReloadStrategySupport
ReloadStrategy which watches a file folder
for modified files and reload on file changes.
This implementation uses the JDK WatchService to watch for when files are
created or modified. Mac OS X users should be noted the osx JDK does not support
native file system changes and therefore the watch service is much slower than on
linux or windows systems.| Modifier and Type | Class and Description |
|---|---|
protected class |
FileWatcherReloadStrategy.WatchFileChangesTask
Background task which watches for file changes
|
logshutdown, shuttingdown, started, starting, stopped, stopping, suspended, suspending| Constructor and Description |
|---|
FileWatcherReloadStrategy() |
FileWatcherReloadStrategy(String directory) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
doStart()
Implementations override this method to support customized start/stop.
|
protected void |
doStop()
Implementations override this method to support customized start/stop.
|
String |
getFolder() |
boolean |
isRunning() |
void |
setFolder(String folder) |
getCamelContext, getFailedCounter, getReloadCounter, onReloadXml, resetCounters, setCamelContextdoResume, doShutdown, doSuspend, getStatus, getVersion, isRunAllowed, isStarted, isStarting, isStopped, isStopping, isStoppingOrStopped, isSuspended, isSuspending, isSuspendingOrSuspended, resume, shutdown, start, stop, suspendpublic FileWatcherReloadStrategy()
public FileWatcherReloadStrategy(String directory)
@ManagedAttribute(description="Folder being watched") public String getFolder()
@ManagedAttribute(description="Whether the watcher is running") public boolean isRunning()
protected void doStart() throws Exception
ServiceSupportServiceSupport.doStop() for more details.doStart in class ReloadStrategySupportExceptionServiceSupport.doStop()protected void doStop() throws Exception
ServiceSupportServiceSupport.doStop() method when
the service is being stopped. This method will also be invoked
if the service is still in uninitialized state (eg has not
been started). The method is always called to allow the service
to do custom logic when the service is being stopped, such as when
CamelContext is shutting down.doStop in class ReloadStrategySupportExceptionServiceSupport.doStart()Apache Camel