super.allocate();
if (executorService == null) {
if (numThreads > 1) {
logger.fine("# of scoring threads: " + numThreads);
executorService = Executors.newFixedThreadPool(numThreads,
new CustomThreadFactory(className, true, threadPriority));
} else {
logger.fine("no scoring threads");
}
}
}