1、 RUNNING:线程池一旦被创建,就处于RUNNING状态,任务数为0,能够接收新任务,对 已排队的任务进行处理。
2、 SHUTDOWN:不接收新任务,但能处理已排队的任务。调用线程池的shutdown()方法,线 程池由RUNNING转变为SHUTDOWN状态。
3、 STOP:不接收新任务,不处理已排队的任务,并且会中断正在处理的任务。调用线程池的 shutdownNow()方法,线程池由(RUNNING或SHUTDOWN )转变为STOP状态。
4、 TIDYING:
SHUTDOWN状态下,任务数为0,其他所有任务已终止,线程池会变为TIDYING状态,会执 行terminated()方法。线程池中的terminated()方法是空实现,可以重写该方法进行相应 的处理。
线程池在SHUTDOWN状态,任务队列为空且执行中任务为空,线程池就会由SHUTDOWN转变为 TIDYING 状态。
线程池在STOP状态,线程池中执行中任务为空时,就会由STOP转变为TIDYING状态。
5、TERMINATED:线程池彻底终止。线程池在TIDYING状态执行完terminated()方法就会 由TIDYING转变为TERMINATED状态。
状态转换如图:
JDK源码中的解释如下
状态:
The runState provides the main lifecyle control, taking on values:
RUNNING: Accept new tasks and process queued tasks
SHUTDOWN: Don’t accept new tasks, but process queued tasks
STOP: Don’t accept new tasks, don’t process queued tasks, and interrupt in-progress tasks
TIDYING: All tasks have terminated, workerCount is zero,
the thread transitioning to state TIDYING
will run the terminated() hook method
TERMINATED: terminated() has completed
状态间的变化
RUNNING -> SHUTDOWN
On invocation of shutdown(), perhaps implicitly in finalize()
(RUNNING or SHUTDOWN) -> STOP
On invocation of shutdownNowO
SHUTDOWN -> TIDYING
When both queue and pool are empty
STOP -> TIDYING
When pool is empty
TIDYING -> TERMINATED
When the terminated() hook method has completed
Threads waiting in awaitTermination() will return when the
state reaches TERMINATED.
Was this helpful?
0 / 0