ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/ScheduledCancellable.java
Revision: 1.2
Committed: Sun Aug 31 13:33:13 2003 UTC (20 years, 9 months ago) by dl
Branch: MAIN
CVS Tags: JSR166_NOV3_FREEZE
Changes since 1.1: +0 -5 lines
Log Message:
Removed non-standard tags and misc javadoc cleanup

File Contents

# Content
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 }