Java / Java Multithreading
Explain Exchanger in Java thread.
Exchanger is a synchronization point at which threads can pair and swap elements between the pair. Each thread presents some object on entry to the exchange 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.
package main.java.tags; import java.util.concurrent.*; import java.util.*; public class ExchangerExample { public static void main(String[] args) { Exchanger<Integer> exchanger = new Exchanger<Integer>(); Thread t1 = new MyThread(exchanger, new Integer(5)); Thread t2 = new MyThread(exchanger, new Integer(10)); t1.start(); t2.start(); } } class MyThread extends Thread { Exchanger<Integer> exchanger; Integer numberToExchange; MyThread(Exchanger<Integer> exchanger, Integer message) { this.exchanger = exchanger; this.numberToExchange = message; } public void run() { try { System.out.println(this.getName() + " has value: " + numberToExchange); // exchange messages numberToExchange = exchanger.exchange(numberToExchange); System.out.println("After exchange " + this.getName() + " has value: " + numberToExchange); } catch (Exception e) { } } }
The above example exchanges Integer objects between a pair of threads. The below is the output.
Thread-0 has value: 5 Thread-1 has value: 10 After exchange Thread-0 has value: 10 After exchange Thread-1 has value: 5
Dogecoin
! Earn free bitcoins up to $250 now by signing up.
Earn bitcoins upto $250 (free), invest in other Cryptocurrencies when you signup with blockfi.
Use the referral link: Signup now and earn!
Using BlockFi, don't just buy crypto - start earning on it. Open an interest account with up to 8.6% APY, trade currencies, or borrow money without selling your assets.
Join CoinBase
! We'll both receive $10 in free Bitcoin when they buy or sell their first $100 on Coinbase! Available in India also.
Use the referral Join coinbase!
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull
! Receive free stock by signing up using the link: Webull signup.
More Related questions...