ExecutorService with Callable and Future

In last post I talked about ExecutorService basics. Let us take it forward to understand usage of Future keyword. So far we have seen Executor service usage to start executing a thread in controlled way. What if we need to get a returned object from the thread being executed. Callable interface comes to help. Instead … Continue reading ExecutorService with Callable and Future