ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/jsr166y/TransferQueue.java
(Generate patch)

Comparing jsr166/src/jsr166y/TransferQueue.java (file contents):
Revision 1.9 by jsr166, Sat Aug 1 20:26:50 2009 UTC vs.
Revision 1.10 by jsr166, Sun Aug 2 18:05:53 2009 UTC

# Line 23 | Line 23 | import java.util.concurrent.*;
23   * peek} operation.
24   *
25   * <p>Like other blocking queues, a {@code TransferQueue} may be
26 < * capacity bounded. If so, an attempted {@code transfer} operation
27 < * may initially block waiting for available space, and/or
28 < * subsequently block waiting for reception by a consumer.  Note that
29 < * in a queue with zero capacity, such as {@link SynchronousQueue},
30 < * {@code put} and {@code transfer} are effectively synonymous.
26 > * capacity bounded.  If so, an attempted transfer operation may
27 > * initially block waiting for available space, and/or subsequently
28 > * block waiting for reception by a consumer.  Note that in a queue
29 > * with zero capacity, such as {@link SynchronousQueue}, {@code put}
30 > * and {@code transfer} are effectively synonymous.
31   *
32   * <p>This interface is a member of the
33   * <a href="{@docRoot}/../technotes/guides/collections/index.html">

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines