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

Comparing jsr166/src/main/java/util/concurrent/BlockingQueue.java (file contents):
Revision 1.39 by jsr166, Mon Jul 18 19:14:17 2005 UTC vs.
Revision 1.40 by brian, Fri Sep 2 01:03:08 2005 UTC

# Line 138 | Line 138 | import java.util.Queue;
138   * <a href="{@docRoot}/../guide/collections/index.html">
139   * Java Collections Framework</a>.
140   *
141 + * <p>
142 + * Memory visibility effects: As with other concurrent collections, state
143 + * changes to any object made prior to placing it into a <tt>BlockingQueue</tt>
144 + * <a href="package-summary.html#MemoryVisibility"><i>happen-before</i></a>
145 + * that element is accessed via or removed from the <tt>BlockingQueue</tt>.  
146 + *
147   * @since 1.5
148   * @author Doug Lea
149   * @param <E> the type of elements held in this collection

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines