| ScheduledFuture.java |
1 /*
2 * %W% %E%
3 *
4 * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
5 * ORACLE 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