tomcat源码之connector配置

连接


 

acceptor

/**
* Acceptor thread count.
*/
protected int acceptorThreadCount = 0;

 

 

处理线程

 

private int minSpareThreads = 10;
public int getMinSpareThreads() {
return Math.min(minSpareThreads,getMaxThreads());
}


protected int getMaxThreadsExecutor(boolean useExecutor) {
if (useExecutor && executor != null) {
if (executor instanceof java.util.concurrent.ThreadPoolExecutor) {
return ((java.util.concurrent.ThreadPoolExecutor)executor).getMaximumPoolSize();
} else if (executor instanceof ResizableExecutor) {
return ((ResizableExecutor)executor).getMaxThreads();
} else {
return -1;
}
} else {
return maxThreads;
}
}

 

posted @ 2018-11-12 00:04  人在江湖之诗和远方  阅读(155)  评论(0编辑  收藏  举报