ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/ScheduledFuture.java
Revision: 1.6
Committed: Tue Mar 15 19:47:03 2011 UTC (13 years, 2 months ago) by jsr166
Branch: MAIN
CVS Tags: release-1_7_0, HEAD
Changes since 1.5: +1 -1 lines
Log Message:
Update Creative Commons license URL in legal notices

File Contents

# User Rev Content
1 tim 1.1 /*
2     * Written by Doug Lea with assistance from members of JCP JSR-166
3 dl 1.5 * Expert Group and released to the public domain, as explained at
4 jsr166 1.6 * http://creativecommons.org/publicdomain/zero/1.0/
5 tim 1.1 */
6    
7     package java.util.concurrent;
8    
9     /**
10     * A delayed result-bearing action that can be cancelled.
11     * Usually a scheduled future is the result of scheduling
12 dl 1.4 * a task with a {@link ScheduledExecutorService}.
13 tim 1.1 *
14     * @since 1.5
15     * @author Doug Lea
16 dl 1.3 * @param <V> The result type returned by this Future
17 tim 1.1 */
18     public interface ScheduledFuture<V> extends Delayed, Future<V> {
19     }