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

Comparing jsr166/src/main/java/util/concurrent/BlockingDeque.java (file contents):
Revision 1.17 by jsr166, Thu Sep 8 21:58:22 2005 UTC vs.
Revision 1.18 by jsr166, Wed Sep 14 21:56:17 2005 UTC

# Line 154 | Line 154 | import java.util.*;
154   *  </tr>
155   * </table>
156   *
157 + * <p>Memory consistency effects: As with other concurrent
158 + * collections, actions in a thread prior to placing an object into a
159 + * {@code BlockingDeque}
160 + * <a href="package-summary.html#MemoryVisibility"><i>happen-before</i></a>
161 + * actions subsequent to the access or removal of that element from
162 + * the {@code BlockingDeque} in another thread.
163 + *
164   * <p>This interface is a member of the
165   * <a href="{@docRoot}/../guide/collections/index.html">
166   * Java Collections Framework</a>.
167   *
161 * <p>
162 * Memory consistency effects: As with other concurrent collections, state
163 * changes to any object made prior to placing it into a <tt>BlockingDeque</tt>
164 * <a href="package-summary.html#MemoryVisibility"><i>happen-before</i></a>
165 * that element is accessed via or removed from the <tt>BlockingDeque</tt>.
166 *
168   * @since 1.6
169   * @author Doug Lea
170   * @param <E> the type of elements held in this collection

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines