Executor seems like a clean abstraction. When would you want to use Thread directly rather than rely on the more robust executor?
|
To give some history, Executors were only added as part of the java standard in Java 1.5. So in some ways Executors can be seen as a new better abstraction for dealing with Runnable tasks. A bit of an over-simplification coming... - Executors are threads done right so use them in preference. |
|||||
|
|
There is no advantage to using raw threads. You can always supply Executors with a Thread factory, so even the option of custom thread creation is covered. |
|||
|
|
|
You don't use Thread unless you need more specific behaviour that is not found in Thread itself. You then extend Thread and add your specifically wanted behaviour. Else just use Runnable or Executor. |
|||||
|
|
I use Thread when I need some pull based message processing. E.g. a Queue is take()-en in a loop in a separate thread. For example, you wrap a queue in an expensive context - lets say a JDBC connection, JMS connection, files to process from single disk, etc. Before I get cursed, do you have some scenario? Edit: As stated by others, the The executor framework has protection against crashed runnables and automatically re-create worker threads. One drawback in my opinion, that you have to explicitly You might have a look at Brian Goetz et al: Java Concurrency in Practice (2006) |
||||
|
|
Well, I thought that a ThreadPoolExecutor provided better performance for it manages a pool of threads, minimizing the overhead of instantiating a new thread, allocating memory... And if you are going to launch thousands of threads, it gives you some queuing functionality you would have to program by yourself... Threads & Executors are different tools, used on different scenarios... As I see it, is like asking why should I use ArrayList when I can use HashMap? They are different... |
||||
|
|
|
java.util.concurrent package provides executor interface and can be used to created thread. The Executor interface provides a single method, execute, designed to be a drop-in replacement for a common thread-creation idiom. If r is a Runnable object, and e is an Executor object you can replace (new Thread(r)).start(); with e.execute(r); Refer here |
||||
|
|