views:

608

answers:

1

Hi,

I am working on the Executors in java to concurrently run more threads at a time. I have a set of Runnable Objects and i assign it to the Exceutors.The Executor is working fine and every thing is fine.But after all the tasks are executed in the pool ,the java program is not terminated,i think the Executor takes some time to kill the threads.please anyone help me to reduce the time taken by the executor after executing all tasks.

+5  A: 

The ExecutorService class has 2 methods just for this: shutdown() and shutdownNow().

After using the shutdown() method, you can call awaitTermination() to block until all of the started tasks have completed. You can even provide a timeout to prevent waiting forever.

You might want to click on some of these links that I'm providing. They go straight to the docs where you can readup on this stuff yourself.

Outlaw Programmer
How i can ensure that all the tasks are committed,i need all the tasks should commit its execution
Rajapandian
@Rajapandian The definition of shutdown is that it waits for all tasks to complete, but does not allow new ones to start. How does that not do what you want?
Kathy Van Stone
please any one tell me why my java program takes time to stop execution even after the Executor finish all its task.
Rajapandian
That seems to be a separate question. You can use something like 'jstack' or 'jconsole' to see which threads are running and what they're waiting for.
Outlaw Programmer