tf.setThreadNamePrefix(threadPrefix);
executor.setThreadFactory(tf);
executor.prestartAllCoreThreads();
if ( destination != null ) {
blockingExecutor = new UimaBlockingExecutor(executor, concurrentThreads, destination);
} else {
blockingExecutor = new UimaBlockingExecutor(executor, concurrentThreads);
}
}
}