Since use ExecutorService can submit a Callable task and return a Future, why need to use FutureTask to wrap Callable task and use the method execute? I feel they both do the same thing.
| |||
|
feedback
|
|
In fact you are correct. The two approaches are identical. You generally don't need to wrap them yourself. If you are, you're likely duplicating the code in AbstractExecutorService:
The only difference between Future and RunnableFuture, is the run() method:
A good reason to let the Executor construct the FutureTask for you is to ensure that there is no possible way more than one reference exists to the FutureTask instance. That is, the Executor owns this instance. | |||
|
feedback
|
|
FutureTask
This class provides a Future is the interface | |||
|
feedback
|
|
You would only need to use FutureTask if you want to change its behaviour or access its Callable later. For 99% of uses, just use Callable and Future. | |||
|
feedback
|
|
Future is just interface. Behind the scene, the implementation is FutureTask. You can absolutely using FutureTask manually but you will lose the advantage of using Executor (pooling thread, limit the thread, etc). Using FutureTask is quite similar as using the old Thread and use the run method. | ||||
|
feedback
|