java.util.concurrent.ScheduledFuture

ScheduledFuture是Delayed(点击查看源码) 和 Future(点击查看源码)的继承

上源代码

package java.util.concurrent;

/**
 * A delayed result-bearing action that can be cancelled.
 * Usually a scheduled future is the result of scheduling
 * a task with a {@link ScheduledExecutorService}.
 *
 * @since 1.5
 * @author Doug Lea
 * @param <V> The result type returned by this Future
 */
public interface ScheduledFuture<V> extends Delayed, Future<V> {
}

可以被取消,当cancel的时候,ScheduledExecutorService(点击查看源码)也会被取消。

你可能感兴趣的:(JDK1.6,ScheduledFuture)