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