1 /* 2 * @(#)ScheduledFuture.java 1.5 04/01/12 3 * 4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 8 package java.util.concurrent; 9 10 /** 11 * A delayed result-bearing action that can be cancelled. 12 * Usually a scheduled future is the result of scheduling 13 * a task with a {@link ScheduledExecutorService}. 14 * 15 * @since 1.5 16 * @author Doug Lea 17 * @param <V> The result type returned by this Future 18 */ 19 public interface ScheduledFuture<V> extends Delayed, Future<V> { 20 } 21