public static final String THREAD_NAME = "HotRod-client-async-pool";
public static final AtomicInteger counter = new AtomicInteger(0);
@Override
public ExecutorService getExecutor(Properties p) {
ConfigurationProperties cp = new ConfigurationProperties(p);
ThreadFactory tf = new ThreadFactory() {
public Thread newThread(Runnable r) {
Thread th = new Thread(r, THREAD_NAME + "-" + counter.getAndIncrement());
th.setDaemon(true);
return th;
}
};
return new ThreadPoolExecutor(cp.getDefaultExecutorFactoryPoolSize(), cp.getDefaultExecutorFactoryPoolSize(),
0L, TimeUnit.MILLISECONDS,
new LinkedBlockingQueue<Runnable>(cp.getDefaultExecutorFactoryQueueSize()),
tf);
}