Exchanger (Java Platform SE 8 ) (original) (raw)
- java.util.concurrent.Exchanger
Type Parameters:
V
- The type of objects that may be exchanged
public class Exchanger
extends Object
A synchronization point at which threads can pair and swap elements within pairs. Each thread presents some object on entry to theexchange method, matches with a partner thread, and receives its partner's object on return. An Exchanger may be viewed as a bidirectional form of a SynchronousQueue. Exchangers may be useful in applications such as genetic algorithms and pipeline designs.
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>(); 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.isFull()) 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.isEmpty()) currentBuffer = exchanger.exchange(currentBuffer); } } catch (InterruptedException ex) { ... handle ...} } } void start() { new Thread(new FillingLoop()).start(); new Thread(new EmptyingLoop()).start(); } }
Memory consistency effects: For each pair of threads that successfully exchange objects via an Exchanger
, actions prior to the exchange()
in each threadhappen-before those subsequent to a return from the corresponding exchange()
in the other thread.
Since:
1.5
Constructor Summary
Constructors
Constructor Description Exchanger() Creates a new Exchanger. Method Summary
All Methods Instance Methods Concrete Methods
Modifier and Type Method Description V exchange(V x) Waits for another thread to arrive at this exchange point (unless the current thread is interrupted), and then transfers the given object to it, receiving its object in return. V exchange(V x, long timeout,TimeUnit unit) Waits for another thread to arrive at this exchange point (unless the current thread is interrupted 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](../../../java/lang/Object.html "class in java.lang") `[clone](../../../java/lang/Object.html#clone--), [equals](../../../java/lang/Object.html#equals-java.lang.Object-), [finalize](../../../java/lang/Object.html#finalize--), [getClass](../../../java/lang/Object.html#getClass--), [hashCode](../../../java/lang/Object.html#hashCode--), [notify](../../../java/lang/Object.html#notify--), [notifyAll](../../../java/lang/Object.html#notifyAll--), [toString](../../../java/lang/Object.html#toString--), [wait](../../../java/lang/Object.html#wait--), [wait](../../../java/lang/Object.html#wait-long-), [wait](../../../java/lang/Object.html#wait-long-int-)`
Constructor Detail
* #### Exchanger public Exchanger() Creates a new Exchanger.
Method Detail
* #### exchange public [V](../../../java/util/concurrent/Exchanger.html "type parameter in Exchanger") exchange([V](../../../java/util/concurrent/Exchanger.html "type parameter in Exchanger") x) throws [InterruptedException](../../../java/lang/InterruptedException.html "class in java.lang") Waits for another thread to arrive at this exchange point (unless the current thread is [interrupted](../../../java/lang/Thread.html#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: * Some other thread enters the exchange; or * Some other thread [interrupts](../../../java/lang/Thread.html#interrupt--) the current thread. If the current thread: * has its interrupted status set on entry to this method; or * is [interrupted](../../../java/lang/Thread.html#interrupt--) while waiting for the exchange, then [InterruptedException](../../../java/lang/InterruptedException.html "class in java.lang") 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](../../../java/lang/InterruptedException.html "class in java.lang")` \- if the current thread was interrupted while waiting * #### exchange public [V](../../../java/util/concurrent/Exchanger.html "type parameter in Exchanger") exchange([V](../../../java/util/concurrent/Exchanger.html "type parameter in Exchanger") x, long timeout, [TimeUnit](../../../java/util/concurrent/TimeUnit.html "enum in java.util.concurrent") unit) throws [InterruptedException](../../../java/lang/InterruptedException.html "class in java.lang"), [TimeoutException](../../../java/util/concurrent/TimeoutException.html "class in java.util.concurrent") Waits for another thread to arrive at this exchange point (unless the current thread is [interrupted](../../../java/lang/Thread.html#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: * Some other thread enters the exchange; or * Some other thread [interrupts](../../../java/lang/Thread.html#interrupt--) the current thread; or * The specified waiting time elapses. If the current thread: * has its interrupted status set on entry to this method; or * is [interrupted](../../../java/lang/Thread.html#interrupt--) while waiting for the exchange, then [InterruptedException](../../../java/lang/InterruptedException.html "class in java.lang") is thrown and the current thread's interrupted status is cleared. If the specified waiting time elapses then [TimeoutException](../../../java/util/concurrent/TimeoutException.html "class in java.util.concurrent") 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](../../../java/lang/InterruptedException.html "class in java.lang")` \- if the current thread was interrupted while waiting `[TimeoutException](../../../java/util/concurrent/TimeoutException.html "class in java.util.concurrent")` \- if the specified waiting time elapses before another thread enters the exchange
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2025, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.