|
JavaTM 2 Platform Standard Ed. 5.0 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.lang.Object java.util.AbstractCollection<E> java.util.AbstractQueue<E> java.util.concurrent.DelayQueue<E>
E
- 在此 collection 中保持的元素类型public class DelayQueue<E extends Delayed>
Delayed 元素的一个无界阻塞队列,只有在延迟期满时才能从中提取元素。该队列的头部 是延迟期满后保存时间最长的 Delayed 元素。如果延迟都还没有期满,则队列没有头部,并且 poll 将返回 null。当一个元素的 getDelay(TimeUnit.NANOSECONDS) 方法返回一个小于或等于零的值时,则出现期满。此队列不允许使用 null 元素。
此类及其迭代器实现了 Collection
和 Iterator
接口的所有可选 方法。
此类是 Java Collections Framework 的成员。
构造方法摘要 | |
---|---|
DelayQueue()
创建一个最初为空的新 DelayQueue。 |
|
DelayQueue(Collection<? extends E> c)
创建一个最初包含 Delayed 实例的给定 collection 中的元素的 DelayQueue。 |
方法摘要 | ||
---|---|---|
boolean |
add(E o)
将指定元素添加到此队列中。 |
|
void |
clear()
自动移除此延迟队列中的所有元素。 |
|
int |
drainTo(Collection<? super E> c)
移除此队列中所有可用的元素,并将它们添加到给定 collection 中。 |
|
int |
drainTo(Collection<? super E> c,
int maxElements)
最多从此队列中移除给定数量的可用元素,并将这些元素添加到给定 collection 中。 |
|
Iterator<E> |
iterator()
返回在此队列中的元素上进行迭代的迭代器。 |
|
boolean |
offer(E o)
将指定元素插入到此延迟队列中。 |
|
boolean |
offer(E o,
long timeout,
TimeUnit unit)
将指定元素插入到此延迟队列中。 |
|
E |
peek()
检索但不移除此队列的头部,如果此队列不存在未到期延迟的元素,则返回 null。 |
|
E |
poll()
检索并移除此队列的头部,如果此队列不存在未到期延迟的元素,则返回 null。 |
|
E |
poll(long timeout,
TimeUnit unit)
检索并移除此队列的头部,如果此队列不存在未到期延迟的元素,则在到达指定的等待时间之前,一直等待(如果有必要)。 |
|
void |
put(E o)
将指定元素添加到此延迟队列中。 |
|
int |
remainingCapacity()
因为 DelayQueue 没有容量限制,所以它总是返回 Integer.MAX_VALUE。 |
|
boolean |
remove(Object o)
从此队列中移除指定元素的单个实例(如果存在)。 |
|
int |
size()
返回此 collection 中的元素数。 |
|
E |
take()
检索并移除此队列的头部,如果此队列不存在未到期延迟的元素,则等待它。 |
|
Object[] |
toArray()
返回包含此 collection 中所有元素的数组。 |
|
|
toArray(T[] array)
返回包含此 collection 中所有元素的数组;返回数组的运行时类型是指定数组的类型。 |
从类 java.util.AbstractQueue 继承的方法 |
---|
addAll, element, remove |
从类 java.util.AbstractCollection 继承的方法 |
---|
contains, containsAll, isEmpty, removeAll, retainAll, toString |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
从接口 java.util.Queue 继承的方法 |
---|
element, remove |
从接口 java.util.Collection 继承的方法 |
---|
addAll, contains, containsAll, equals, hashCode, isEmpty, removeAll, retainAll |
构造方法详细信息 |
---|
public DelayQueue()
public DelayQueue(Collection<? extends E> c)
Delayed
实例的给定 collection 中的元素的 DelayQueue。
c
- collection
NullPointerException
- 如果 c 或者 collection 中的任何元素为 null方法详细信息 |
---|
public boolean offer(E o)
BlockingQueue<E extends Delayed>
中的 offer
Queue<E extends Delayed>
中的 offer
o
- 要添加的元素
NullPointerException
- 如果指定的元素为 null。public void put(E o)
BlockingQueue<E extends Delayed>
中的 put
o
- 要添加的元素
NullPointerException
- 如果指定的元素为 null。public boolean offer(E o, long timeout, TimeUnit unit)
BlockingQueue<E extends Delayed>
中的 offer
o
- 要添加的元素timeout
- 因为该方法永远不会阻塞,所以忽略此参数unit
- 因为该方法永远不会阻塞,所以忽略此参数
NullPointerException
- 如果指定的元素为 null。public boolean add(E o)
Collection<E extends Delayed>
中的 add
BlockingQueue<E extends Delayed>
中的 add
AbstractQueue<E extends Delayed>
中的 add
o
- 要添加的元素
NullPointerException
- 如果指定的元素为 null。public E take() throws InterruptedException
BlockingQueue<E extends Delayed>
中的 take
InterruptedException
- 如果等待时中断。public E poll(long timeout, TimeUnit unit) throws InterruptedException
BlockingQueue<E extends Delayed>
中的 poll
timeout
- 放弃前要等待的时间长度,以 unit 为时间单位unit
- 确定如何解释 timeout 参数的 TimeUnit
InterruptedException
- 如果在等待时被中断。public E poll()
Queue<E extends Delayed>
中的 poll
public E peek()
Queue<E extends Delayed>
中的 peek
public int size()
AbstractCollection
复制的描述
Collection<E extends Delayed>
中的 size
AbstractCollection<E extends Delayed>
中的 size
public int drainTo(Collection<? super E> c)
BlockingQueue
复制的描述
BlockingQueue<E extends Delayed>
中的 drainTo
c
- 接收传输元素的 collection
public int drainTo(Collection<? super E> c, int maxElements)
BlockingQueue
复制的描述
BlockingQueue<E extends Delayed>
中的 drainTo
c
- 接收传输元素的 collectionmaxElements
- 传输元素的最大数量
public void clear()
Collection<E extends Delayed>
中的 clear
AbstractQueue<E extends Delayed>
中的 clear
public int remainingCapacity()
BlockingQueue<E extends Delayed>
中的 remainingCapacity
public Object[] toArray()
AbstractCollection
复制的描述此实现会分配返回的数组,并迭代 collection 中的元素,将每个对象引用存储在数组的下一个连续元素中,并从元素 0 开始。
Collection<E extends Delayed>
中的 toArray
AbstractCollection<E extends Delayed>
中的 toArray
public <T> T[] toArray(T[] array)
AbstractCollection
复制的描述如果指定的数组能容纳 collection,并且有剩余的空间(即数组的元素比 collection 多),那么会将紧挨着 collection 尾部的元素设置为 null(这对确定 collection 的长度很有用,但只有 在调用方知道 collection 不包含任何 null 元素时才可行)。
如果此 collection 保证其迭代器按顺序返回其元素,那么此方法也必须按相同的顺序返回这些元素。
此实现会检查该数组是否足够大,以包含该 collection 中的元素;如果不能包含,则将分配一个具有适当大小和类型的新数组(使用反射)。然后,在该 collection 上进行迭代,将每个对象引用存储在数组的下一个连续元素中,并从元素 0 开始。如果该数组比该 collection 大,则在该 collection 尾部后面的第一个位置存储 null。
Collection<E extends Delayed>
中的 toArray
AbstractCollection<E extends Delayed>
中的 toArray
array
- 存储此 collection 的元素的数组(如果其足够大);否则,将为此分配一个具有相同运行时类型的新数组。
public boolean remove(Object o)
Collection<E extends Delayed>
中的 remove
AbstractCollection<E extends Delayed>
中的 remove
o
- 要从此 collection 中移除的元素(如果存在)。
public Iterator<E> iterator()
ConcurrentModificationException
。
Iterable<E extends Delayed>
中的 iterator
Collection<E extends Delayed>
中的 iterator
AbstractCollection<E extends Delayed>
中的 iterator
|
JavaTM 2 Platform Standard Ed. 5.0 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
版权所有 2004 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策。