ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/DelayQueue.java
(Generate patch)

Comparing jsr166/src/main/java/util/concurrent/DelayQueue.java (file contents):
Revision 1.14 by dl, Fri Sep 12 15:40:10 2003 UTC vs.
Revision 1.15 by dl, Sat Sep 13 18:51:11 2003 UTC

# Line 16 | Line 16 | import java.util.*;
16   * expired furthest in the past - if no delay has expired there is no head and
17   * <tt>poll</tt> will return <tt>null</tt>.
18   * This queue does not permit <tt>null</tt> elements.
19 + * <p>This class implements all of the <em>optional</em> methods
20 + * of the {@link Collection} and {@link Iterator} interfaces.
21   * @since 1.5
22   * @author Doug Lea
23   */
# Line 247 | Line 249 | public class DelayQueue<E extends Delaye
249      /**
250       * Returns an iterator over the elements in this queue. The iterator
251       * does not return the elements in any particular order. The
252 <     * returned iterator is a "fast-fail" iterator that will
252 >     * returned iterator is a thread-safe "fast-fail" iterator that will
253       * throw {@link java.util.ConcurrentModificationException}
254       * upon detected interference.
255       *

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines