Javatpoint Logo
Javatpoint Logo

Java ThreadPoolExecutor isTerminated() Method

The isTerminated() method of ThreadPoolExecutor class returns true if all the tasks have been completed following shut down. Here, we must notice that isTerminated() never returns true unless either shut down or shutdownNow was called first.

Syntax

Parameters

No parameter is passed.

Return

True if all the tasks have been completed following shut down

Throw

Does not throw the exception.

Example 1

Test it Now

Output:

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

Example 2

Test it Now

Output:

Starting threads
  Maximum pool size: 2147483647
get Task count before:0
get Task count after:2
 Is Executor is Terminated :false
Threads started, main ends

i=5
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