JavaTM 2 Platform
Standard Ed. 6

java.util.concurrent
接口 Delayed

所有超级接口:
Comparable<Delayed>
所有已知子接口:
RunnableScheduledFuture<V>, ScheduledFuture<V>

public interface Delayed
extends Comparable<Delayed>

一种混合风格的接口,用来标记那些应该在给定延迟时间之后执行的对象。

此接口的实现必须定义一个 compareTo 方法,该方法提供与此接口的 getDelay 方法一致的排序。

从以下版本开始:
1.5

方法摘要
 long getDelay(TimeUnit unit)
          返回与此对象相关的剩余延迟时间,以给定的时间单位表示。
 
从接口 java.lang.Comparable 继承的方法
compareTo
 

方法详细信息

getDelay

long getDelay(TimeUnit unit)
返回与此对象相关的剩余延迟时间,以给定的时间单位表示。

参数:
unit - 时间单位
返回:
剩余延迟时间;零或负值指示延迟时间已经用尽

JavaTM 2 Platform
Standard Ed. 6

提交错误或意见

版权所有 2008 Sun Microsystems, Inc. 保留所有权利。请遵守GNU General Public License, version 2 only