Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
A Runnable encapsulates a task that runs asynchronously; you can think of it as an asynchronous method with no parameters and no return value. A Callable is similar to a Runnable, but it returns a value. The Callable interface is a parameterized type, with a single method call.
public interface Callable<V>
{
V call() throws Exception;
}