Java并发

54 阅读1分钟

Java并发编程:Callable、Future和FutureTask

public interface Future<V> {

  boolean cancel(boolean var1);

  boolean isCancelled();

  boolean isDone();

  V get() throws InterruptedException, ExecutionException;

  V get(long var1, TimeUnit var3) throws InterruptedException, ExecutionException, TimeoutException;
}