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

Comparing jsr166/src/main/java/util/concurrent/Exchanger.java (file contents):
Revision 1.11 by dl, Sat Oct 18 12:29:33 2003 UTC vs.
Revision 1.12 by dl, Sun Dec 21 14:55:52 2003 UTC

# Line 8 | Line 8 | package java.util.concurrent;
8   import java.util.concurrent.locks.*;
9  
10   /**
11 < * An <tt>Exchanger</tt> provides a synchronization point at which two threads
12 < * can exchange objects.  Each thread presents some object on entry to
13 < * the {@link #exchange exchange} method, and receives the object presented by
14 < * the other thread on return.
11 > * A synchronization point at which two threads can exchange objects.
12 > * Each thread presents some object on entry to the {@link #exchange
13 > * exchange} method, and receives the object presented by the other
14 > * thread on return.
15   *
16   * <p><b>Sample Usage:</b>
17   * Here are the highlights of a class that uses an <tt>Exchanger</tt> to

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines