Callable接口:

public interface Callable<V> {
    V call() throws Exception;
}

相关文章: