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

/forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/sync/impl/
H A DReconciliationService.java142 ExecutorService fullReconExecutor; field in class:ReconciliationService
368 fullReconExecutor.execute(command);
456 fullReconExecutor = Executors.newFixedThreadPool(maxConcurrentFullRecons);
521 return fullReconExecutor;
529 if (fullReconExecutor instanceof ThreadPoolExecutor) {
530 return ((ThreadPoolExecutor) fullReconExecutor).getActiveCount();
531 } else if (fullReconExecutor instanceof ScheduledThreadPoolExecutor) {
532 return ((ScheduledThreadPoolExecutor) fullReconExecutor).getActiveCount();
544 if (fullReconExecutor instanceof ThreadPoolExecutor) {
545 return ((ThreadPoolExecutor) fullReconExecutor)
[all...]

Completed in 28 milliseconds