ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/ScheduledCancellable.java
Revision: 1.1
Committed: Tue Aug 19 15:04:57 2003 UTC (20 years, 9 months ago) by tim
Branch: MAIN
Log Message:
Future extends Cancellable.
class SE.DelayedTask -> interface ScheduledCancellable
class SE.DelayedFutureTask -> interface ScheduledFuture
Add primitive SE test.
Related internals changes.

File Contents

# User Rev Content
1 tim 1.1 /*
2     * Written by Doug Lea with assistance from members of JCP JSR-166
3     * Expert Group and released to the public domain. Use, modify, and
4     * redistribute this code in any way without acknowledgement.
5     */
6    
7     package java.util.concurrent;
8    
9     /**
10     * A delayed or periodic action that can be cancelled.
11     * Usually a scheduled cancellable is the result of scheduling
12     * a task with a {@link ScheduledExecutor}.
13     *
14     * @since 1.5
15     *
16     * @spec JSR-166
17     * @revised $Date: 2003/08/06 00:20:00 $
18     * @editor $Author: dl $
19     * @see ScheduledExecutor
20     * @author Doug Lea
21     */
22     public interface ScheduledCancellable extends Delayed, Cancellable {
23     }