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
Invest now in Acorns!!! 🚀
Join Acorns and get your $5 bonus!
Acorns is a micro-investing app that automatically invests your "spare change" from daily purchases into diversified, expert-built portfolios of ETFs. It is designed for beginners, allowing you to start investing with as little as $5. The service automates saving and investing. Disclosure: I may receive a referral bonus.
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...
