1 2 3 4 5
package java.util.concurrent; public interface Callable<V> { public abstract V call() throws java.lang.Exception; }