Searched defs:historyRenamedExecutor (Results 1 - 1 of 1) sorted by relevance

/opengrok/src/org/opensolaris/opengrok/configuration/
H A DRuntimeEnvironment.java103 private static ExecutorService historyRenamedExecutor = null; field in class:RuntimeEnvironment
150 if (historyRenamedExecutor == null) {
162 historyRenamedExecutor = Executors.newFixedThreadPool(num,
173 return historyRenamedExecutor;
199 if (historyRenamedExecutor != null) {
200 historyRenamedExecutor.shutdown();
203 historyRenamedExecutor.awaitTermination(1, TimeUnit.MINUTES);
204 historyRenamedExecutor = null;

Completed in 15 milliseconds