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

Comparing jsr166/src/main/java/util/concurrent/ExecutorService.java (file contents):
Revision 1.41 by brian, Fri Sep 2 01:10:52 2005 UTC vs.
Revision 1.42 by dl, Thu Sep 8 00:04:00 2005 UTC

# Line 72 | Line 72 | import java.security.PrivilegedException
72   * }
73   * </pre>
74   *
75 < * Memory visibility effects: State changes to a <tt>Runnable</tt> or
75 > * Memory consistency effects: State changes to a <tt>Runnable</tt> or
76   * <tt>Callable</tt> object made prior to submission to an
77 < * <tt>Executor</tt> <a
77 > * <tt>ExecutorService</tt> <a
78   * href="package-summary.html#MemoryVisibility"><i>happen-before</i></a>
79   * its execution, and state changes to objects returned from a
80 < * <tt>Callable</tt> <i>happen-before</i> that object is returned to
81 < * a thread which calls <tt>Future.get()</tt> to retrieve that result.
80 > * <tt>Callable</tt> <i>happen-before</i> that object is accessed
81 > * via <tt>Future.get()</tt>.
82   *
83   * @since 1.5
84   * @author Doug Lea

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines