if (isInit == false) {
RejectedExecutionHandler handler = getHandler(mode);
BlockingQueue queue = getBlockingQueue(acceptCount, mode);
// 构造pool池
this.pool = new AsyncLoadThreadPool(poolSize, poolSize, 0L, TimeUnit.MILLISECONDS, queue,
new NamedThreadFactory(), handler);
isInit = true;
}
}