- 浏览: 3342 次
- 性别:
- 来自: 上海
最新评论
文章列表
QueuedThreadPool
doStart()方法负责初始化并启动_minThreads个空线程,等待任务的到来。其中,
_theads用来存放当前池中所有线程;
_idle中存放当前空闲线程;
_jobs为存放任务的队列,先来先服务。
protected void doStart() throws Exception
{
if (_maxThreads<_minThreads || _minThreads<=0)
throw new IllegalArgumentException("!0<minThreads<maxThreads ...
Ever wondered how to configure JProfiler 6 for Oracle WebLogic 11g application server? Here are the steps:
1. Download and install JProfiler 6. If you don't have the license, you can install the 10-day trial version. Follow the installation notes and start JProfiler. Assume the JProfiler installatio ...