public void start(String name) throws Exception { damon = new DaemonThread(refreshInterval, "FileContentCache Refresh Monitor Worker for " + name); damon.start(); }
public void destroy() throws Exception { if (damon != null) { damon.stopped(); } }