ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/ScheduledCancellable.java
Revision: 1.3
Committed: Thu Dec 4 20:54:29 2003 UTC (20 years, 6 months ago) by dl
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +0 -0 lines
State: FILE REMOVED
Log Message:
Revised tests for revised Future classes

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     * @author Doug Lea
16     */
17     public interface ScheduledCancellable extends Delayed, Cancellable {
18     }