I have to wait for completion of all the threads in an executorService. Should I use
while(!executor.isTerminated()){...} or
executor.awaitTermination(...)?
What are the pros and cons of these ways?
I have to wait for completion of all the threads in an executorService. Should I use
while(!executor.isTerminated()){...} or
executor.awaitTermination(...)?
What are the pros and cons of these ways?
With executor.isTerminated()
your current thread will keep running.
with executor.awaitTermination()
the current thread will be blocked.
So it depends on what you want to do in your current thread.
Do you want to do some tasks and periodically check for whether the executor is done, then use executor.isTerminated()
?
Or Is the current thread just waiting for the executor to finish. If yes, executor.awaitTermination()
makes much more sense.
Do note that an Executor will only be terminated if the shutdown()
or shutdownNow()
is called.
Recommended way from oracle documentation link:
if your threads are not completing with-in 120 seconds, you can change second if condition as :
You can find other alternatives at @ wait until all threads finish their work in java
One more key note on usage of
isTerminated
: