Callable与Future
Callable(P681)
public interface Callable<V>{
v call() throws Exception;
}Future(P681)
public interface Future<V>{
V get() throws ...;
V get(long timeout,TimeUnit unit) throws ...;
void cancel(boolean mayInterrupt);
boolean isCancelled();
boolean isDone();
}FutureTask包装器(P681)
相关API
Last updated