I am rather new to learning java.util.concurrent. While implementing a basic program (below) it's clear that the main thread waits for Callable to return a value.
public class FutureTaskTutorial {
public static void main(String[] args) throws ExecutionException, InterruptedException {
FutureTask futureTask = new FutureTask(new MyCallable());
Thread thread = new Thread(futureTask);
thread.start();
System.out.println(futureTask.get());
System.out.println("main thread done!");
}
}
class MyCallable implements Callable<String>{
@Override
public String call() throws Exception {
Thread.sleep(5000);
return "Callable task done!";
}
}
Output: <after 5 seconds>
Callable task done!
main thread done!
My question is: If my callable is going to block main thread and asynchronous behaviour is not going to be achieved, what is the point of using a FutureTask?
FutureTask#get
may be blocking, however the usecase ofFutureTasks
is to periodically check if they are done while still executing the rest of the main-method. For example: