java.util.concurrent
Class Exchanger<V>

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.util.concurrent.Exchanger<V>
Type Parameters:
V - The type of objects that may be exchanged

public class Exchanger<V>
extends Object sample code for java.lang.Object definition code for java.lang.Object

A synchronization point at which two threads can exchange objects. Each thread presents some object on entry to the exchange sample code for java.util.concurrent.Exchanger.exchange(V) definition code for java.util.concurrent.Exchanger.exchange(V) method, and receives the object presented by the other thread on return.

Sample Usage: Here are the highlights of a class that uses an Exchanger to swap buffers between threads so that the thread filling the buffer gets a freshly emptied one when it needs it, handing off the filled one to the thread emptying the buffer.

 class FillAndEmpty {
   Exchanger<DataBuffer> exchanger = new Exchanger();
   DataBuffer initialEmptyBuffer = ... a made-up type
   DataBuffer initialFullBuffer = ...

   class FillingLoop implements Runnable {
     public void run() {
       DataBuffer currentBuffer = initialEmptyBuffer;
       try {
         while (currentBuffer != null) {
           addToBuffer(currentBuffer);
           if (currentBuffer.full())
             currentBuffer = exchanger.exchange(currentBuffer);
         }
       } catch (InterruptedException ex) { ... handle ... }
     }
   }

   class EmptyingLoop implements Runnable {
     public void run() {
       DataBuffer currentBuffer = initialFullBuffer;
       try {
         while (currentBuffer != null) {
           takeFromBuffer(currentBuffer);
           if (currentBuffer.empty())
             currentBuffer = exchanger.exchange(currentBuffer);
         }
       } catch (InterruptedException ex) { ... handle ...}
     }
   }

   void start() {
     new Thread(new FillingLoop()).start();
     new Thread(new EmptyingLoop()).start();
   }
 }
 

Since:
1.5

Constructor Summary
Exchanger sample code for java.util.concurrent.Exchanger.Exchanger() definition code for java.util.concurrent.Exchanger.Exchanger() ()
          Create a new Exchanger.
 
Method Summary
 V exchange sample code for java.util.concurrent.Exchanger.exchange(V) definition code for java.util.concurrent.Exchanger.exchange(V) (V x)
          Waits for another thread to arrive at this exchange point (unless it is interrupted sample code for java.lang.Thread.interrupt() definition code for java.lang.Thread.interrupt() ), and then transfers the given object to it, receiving its object in return.
 V exchange sample code for java.util.concurrent.Exchanger.exchange(V, long, java.util.concurrent.TimeUnit) definition code for java.util.concurrent.Exchanger.exchange(V, long, java.util.concurrent.TimeUnit) (V x, long timeout, TimeUnit sample code for java.util.concurrent.TimeUnit definition code for java.util.concurrent.TimeUnit  unit)
          Waits for another thread to arrive at this exchange point (unless it is interrupted sample code for java.lang.Thread.interrupt() definition code for java.lang.Thread.interrupt() , or the specified waiting time elapses), and then transfers the given object to it, receiving its object in return.
 
Methods inherited from class java.lang.Object sample code for java.lang.Object definition code for java.lang.Object
clone sample code for java.lang.Object.clone() definition code for java.lang.Object.clone() , equals sample code for java.lang.Object.equals(java.lang.Object) definition code for java.lang.Object.equals(java.lang.Object) , finalize sample code for java.lang.Object.finalize() definition code for java.lang.Object.finalize() , getClass sample code for java.lang.Object.getClass() definition code for java.lang.Object.getClass() , hashCode sample code for java.lang.Object.hashCode() definition code for java.lang.Object.hashCode() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() , toString sample code for java.lang.Object.toString() definition code for java.lang.Object.toString() , wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , wait sample code for java.lang.Object.wait(long) definition code for java.lang.Object.wait(long) , wait sample code for java.lang.Object.wait(long, int) definition code for java.lang.Object.wait(long, int)
 

Constructor Detail

Exchanger sample code for java.util.concurrent.Exchanger() definition code for java.util.concurrent.Exchanger()

public Exchanger()
Create a new Exchanger.

Method Detail

exchange sample code for java.util.concurrent.Exchanger.exchange(V) definition code for java.util.concurrent.Exchanger.exchange(V)

public V exchange(V x)
           throws InterruptedException sample code for java.lang.InterruptedException definition code for java.lang.InterruptedException 
Waits for another thread to arrive at this exchange point (unless it is interrupted sample code for java.lang.Thread.interrupt() definition code for java.lang.Thread.interrupt() ), and then transfers the given object to it, receiving its object in return.

If another thread is already waiting at the exchange point then it is resumed for thread scheduling purposes and receives the object passed in by the current thread. The current thread returns immediately, receiving the object passed to the exchange by that other thread.

If no other thread is already waiting at the exchange then the current thread is disabled for thread scheduling purposes and lies dormant until one of two things happens:

If the current thread:

then InterruptedException sample code for java.lang.InterruptedException definition code for java.lang.InterruptedException is thrown and the current thread's interrupted status is cleared.

Parameters:
x - the object to exchange
Returns:
the object provided by the other thread.
Throws:
InterruptedException sample code for java.lang.InterruptedException definition code for java.lang.InterruptedException - if current thread was interrupted while waiting

exchange sample code for java.util.concurrent.Exchanger.exchange(V, long, java.util.concurrent.TimeUnit) definition code for java.util.concurrent.Exchanger.exchange(V, long, java.util.concurrent.TimeUnit)

public V exchange(V x,
                  long timeout,
                  TimeUnit sample code for java.util.concurrent.TimeUnit definition code for java.util.concurrent.TimeUnit  unit)
           throws InterruptedException sample code for java.lang.InterruptedException definition code for java.lang.InterruptedException ,
                  TimeoutException sample code for java.util.concurrent.TimeoutException definition code for java.util.concurrent.TimeoutException 
Waits for another thread to arrive at this exchange point (unless it is interrupted sample code for java.lang.Thread.interrupt() definition code for java.lang.Thread.interrupt() , or the specified waiting time elapses), and then transfers the given object to it, receiving its object in return.

If another thread is already waiting at the exchange point then it is resumed for thread scheduling purposes and receives the object passed in by the current thread. The current thread returns immediately, receiving the object passed to the exchange by that other thread.

If no other thread is already waiting at the exchange then the current thread is disabled for thread scheduling purposes and lies dormant until one of three things happens:

If the current thread:

then InterruptedException sample code for java.lang.InterruptedException definition code for java.lang.InterruptedException is thrown and the current thread's interrupted status is cleared.

If the specified waiting time elapses then TimeoutException sample code for java.util.concurrent.TimeoutException definition code for java.util.concurrent.TimeoutException is thrown. If the time is less than or equal to zero, the method will not wait at all.

Parameters:
x - the object to exchange
timeout - the maximum time to wait
unit - the time unit of the timeout argument.
Returns:
the object provided by the other thread.
Throws:
InterruptedException sample code for java.lang.InterruptedException definition code for java.lang.InterruptedException - if current thread was interrupted while waiting
TimeoutException sample code for java.util.concurrent.TimeoutException definition code for java.util.concurrent.TimeoutException - if the specified waiting time elapses before another thread enters the exchange.