Java Concurrency and Multithreading, Part 3: The FutureTask Class and the Callable Interface
Last time we looked at the Thread class and the Runnable interface, but that pairing has one problem: no return value. If we want the thread to hand a value back, we need FutureTask and Callable, which is what this post covers.









