Javatpoint Logo
Javatpoint Logo

Java ThreadPoolExecutor shutdownNow() Method

The shutdownNow () method of ThreadPoolExecutor class attempts to stop all the tasks which are executing actively, halts the processing of waiting tasks and returns a list of the tasks that were awaiting execution.

Syntax

Parameters

maximumPoolSize - the new maximum

Return

list of tasks that never commenced execution

Throw

SecurityException

Example 1

Test it Now

Output:

Is Executor is shutdown :false
get Task count after:2
 Is Executor is shutdown :true
Running Thread Name: pool-1-thread-1
Running Thread Name: pool-1-thread-2

Example 2

Test it Now

Output:

Starting threads
  Maximum pool size: 2147483647
get Task count before:0
i=5
 Is Executor is shutdown :true
Threads started, main ends

i=5






Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA