return answer;
}
public ExecutorService newDefaultThreadPool(Object source, String name) {
ThreadPoolProfile profile = getDefaultThreadPoolProfile();
ObjectHelper.notNull(profile, "DefaultThreadPoolProfile");
return newThreadPool(source, name,
profile.getPoolSize(), profile.getMaxPoolSize(),
profile.getKeepAliveTime(), profile.getTimeUnit(),
profile.getMaxQueueSize(), profile.getRejectedExecutionHandler(), false);
}