| Author |
Thread vs Executor
|
rakesh sugirtharaj
Ranch Hand
Joined: Dec 16, 2007
Posts: 151
|
|
|
What is the advantage of using Executors over conventional threading? Can anyone explain with a simple example?
|
Cheers!
RSR
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32651
|
|
Find a copy of Java Concurrency in Practice by Brian Goetz, Tim Peierls, Joseph Bowbeer, David Holmes, Joshua Bloch, Doug Lea. I think this thread would sit better in the threads forum, so I shall move it.
|
 |
Nitesh Kant
Bartender
Joined: Feb 25, 2007
Posts: 1638
|
|
Executors is a threadpool. Its costly to create a new thread everytime to process a task. Its effective and recommended to reuse threads if possible. Executors do just that for you. This is the basic benefit of using Executors over thread creation per task. For detailed discussions do read the book that Campbell has pointed out!
|
apigee, a better way to API!
|
 |
 |
|
|
subject: Thread vs Executor
|
|
|