Table of Contents
CountDownLatch Example
Home Java javaTutorial What is the difference between CountDownLatch and CyclicBarrier in Java concurrency?

What is the difference between CountDownLatch and CyclicBarrier in Java concurrency?

Sep 06, 2023 pm 03:33 PM
cyclicbarrier countdownlatch java concurrency

What is the difference between CountDownLatch and CyclicBarrier in Java concurrency?

CountDownLatch and CyclicBarrier are both used in and are part of a multi-threaded environment.

According to Java Doc -

CountDownLatch - A synchronization aid that allows one or more threads to wait until a set of operations performed in other threads is completed.

CyclicBarrier - A synchronization aid that allows a group of threads to wait for each other to reach a common barrier point.

##2RunningIt has a constructor that can provide Runnable. It has no such constructor3Thread /taskIt maintains thread countIt maintains task count tr>4.5CyclicBarrier Example
gentlemen. No. Key CyclicBarrier CountDownLatch
1

Basic

Allows synchronization of a group of threads all waiting for each other to reach a common obstacle point.

A synchronization aid that allows one or more threads to wait for a set of operations performed in other threads to complete.

##Can be advanced

It is not recommended to use

It is recommended to use.

Exception

If a thread is blocked while waiting If interrupted, all other waiting threads will throw BrokenBarrierException

Only the current thread will throw

InterruptedException and will not affect other threads

public class Main {
   public static void main(String args[]) throws InterruptedException {
      ExecutorService executors = Executors.newFixedThreadPool(4);
      CyclicBarrier cyclicBarrier = new CyclicBarrier(5);
      executors.submit(new Service1(cyclicBarrier));
      executors.submit(new Service1(cyclicBarrier));
      executors.submit(new Service2(cyclicBarrier));
      executors.submit(new Service2(cyclicBarrier));
      executors.submit(new Service2(cyclicBarrier));
      Thread.sleep(3000);
      System.out.println("Done");
   }
}
import java.util.concurrent.BrokenBarrierException;
import java.util.concurrent.CyclicBarrier;
public class Service1 implements Runnable {
   CyclicBarrier cyclicBarrier;
   public Service1(CyclicBarrier cyclicBarrier) {
      super();
      this.cyclicBarrier = cyclicBarrier;
   }
   @Override
   public void run() {
      System.out.println("Services1" + cyclicBarrier.getNumberWaiting());
      while (true) {
         try {
            cyclicBarrier.await();
         } catch (InterruptedException | BrokenBarrierException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
         }
      }
   }
}
import java.util.concurrent.BrokenBarrierException;
import java.util.concurrent.CyclicBarrier;
public class Service2 implements Runnable {
   CyclicBarrier cyclicBarrier;
   public Service2(CyclicBarrier cyclicBarrier) {
      super();
      this.cyclicBarrier = cyclicBarrier;
   }
   @Override
   public void run() {
      System.out.println("Services2" + cyclicBarrier.getNumberWaiting());
      while (true) {
         try {
            cyclicBarrier.await();
         } catch (InterruptedException | BrokenBarrierException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
         }
      }
   }
}
Copy after login

CountDownLatch Example

public class Main {
   public static void main(String args[]) throws InterruptedException {
      ExecutorService executors = Executors.newFixedThreadPool(4);
      CountDownLatch latch= new CountDownLatch(2);
      executors.submit(new Service1(latch));
      executors.submit(new Service2(latch));
      latch.await();
      System.out.println("Done");
   }
}
import java.util.concurrent.CountDownLatch;

public class Service1 implements Runnable {

   CountDownLatch latch;
   public Service1(CountDownLatch latch) {
      super();
      this.latch = latch;
   }

   @Override
   public void run() {
      try {
         Thread.sleep(20000);
      } catch (InterruptedException e) {
         // TODO Auto-generated catch block
         e.printStackTrace();
      }
      latch.countDown();
      System.out.println("Services2"+latch.getCount());
   }
}
import java.util.concurrent.CountDownLatch;
public class Service2 implements Runnable {
   CountDownLatch latch;
   public Service2(CountDownLatch latch) {
      super();
      this.latch = latch;
   }
   @Override
   public void run() {
      try {
         Thread.sleep(20000);
      } catch (InterruptedException e) {
         // TODO Auto-generated catch block
         e.printStackTrace();
      }
      latch.countDown();
      System.out.println("Services2"+latch.getCount());
   }
}
Copy after login

The above is the detailed content of What is the difference between CountDownLatch and CyclicBarrier in Java concurrency?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to handle concurrent access in Java backend function development? How to handle concurrent access in Java backend function development? Aug 04, 2023 pm 08:22 PM

How to handle concurrent access in Java backend function development? In modern Internet applications, high concurrent access is a common challenge. When multiple users access backend services at the same time, if concurrency is not handled correctly, it may cause problems such as data consistency, performance, and security. This article will introduce some best practices for handling concurrent access in Java backend development. 1. Use thread synchronization Java provides a variety of mechanisms to handle concurrent access, the most commonly used of which is thread synchronization. By adding synch before key code blocks or methods

How to use the Fork/Join framework in Java function concurrency and multi-threading? How to use the Fork/Join framework in Java function concurrency and multi-threading? Apr 27, 2024 am 10:09 AM

How to create parallel tasks using Fork/Join framework in Java? Define task logic, calculate results or perform actions. Create a ForkJoinPool to manage parallel threads. Use the fork() method to submit tasks. Use the join() method to get the task results.

Application of reflection mechanism in Java concurrency? Application of reflection mechanism in Java concurrency? Apr 15, 2024 pm 09:03 PM

Answer: The reflection mechanism allows Java programs to inspect and modify classes and objects at runtime through the reflection API, which can be used to implement flexible concurrency mechanisms in Java concurrency. Application: Dynamically create threads. Dynamically change thread priority. Inject dependencies.

How to Fix: Java Concurrency Error: Deadlock Detection How to Fix: Java Concurrency Error: Deadlock Detection Aug 25, 2023 pm 10:03 PM

How to solve: Java Concurrency Error: Deadlock Detection Deadlock is a common problem in multi-threaded programming. A deadlock occurs when two or more threads wait for each other to release a locked resource. Deadlock will cause threads to be blocked, resources cannot be released, and programs cannot continue to execute, resulting in system failure. To solve this problem, Java provides a deadlock detection mechanism. Deadlock detection determines whether there is a deadlock by checking the dependencies between threads and the resource application queuing situation. Once a deadlock is found, the system can take corresponding measures.

What is the role of blocking queue in Java function concurrency and multi-threading? What is the role of blocking queue in Java function concurrency and multi-threading? Apr 27, 2024 am 09:30 AM

Blocking Queue: A Powerful Tool for Concurrency and Multithreading Blocking Queue is a thread-safe queue that plays the following key roles in concurrent and multi-threaded programming: Thread Synchronization: Prevents race conditions and data inconsistencies by blocking operations. Data buffer: As a data buffer, it alleviates the problem of mismatch in producer and consumer thread speeds. Load balancing: Control the number of elements in the queue and balance the load of producers and consumers.

How to define Java CountDownLatch counter and CyclicBarrier cycle barrier How to define Java CountDownLatch counter and CyclicBarrier cycle barrier May 21, 2023 pm 06:25 PM

Definition CountDownLatch:Asynchronizationaidthatallowsoneormorethreadstowaituntilasetofoperationsbeingperformedinotherthreadscompletes.CyclicBarrier:Asynchronizationaidthatallowsasesetofthreadstoallwaitforeachothertoreachacommonbarrierpoint. The above is Oracle's official definition. Simply put C

How to apply CyclicBarrier cycle barrier in Java How to apply CyclicBarrier cycle barrier in Java May 12, 2023 pm 02:19 PM

1. Introduction CyclicBarrier literally means loop barrier (cyclic barrier). It can make a group of threads wait for a certain state (barrier point) and then execute them all at the same time. It is called loopback because CyclicBarrier can be reused after all waiting threads are released. The function of CyclicBarrier is to make a group of threads wait for each other. When a common point is reached, all previously waiting threads continue to execute, and the CyclicBarrier function can be reused. 2. The construction method of CyclicBarrier: //parties represents the number of threads intercepted by the barrier. Each thread calls the await method to tell CyclicBarrier what it is.

How to use CyclicBarrier for high concurrency in Java How to use CyclicBarrier for high concurrency in Java Apr 14, 2023 pm 07:07 PM

CyclicBarrier in Java is a synchronization tool that allows multiple threads to wait at a barrier until all threads reach the barrier before execution can continue. CyclicBarrier can be used to coordinate the execution of multiple threads so that they can execute simultaneously at a certain point. CyclicBarrier is a synchronization tool in Java that allows multiple threads to wait at a barrier point until all threads reach that point before execution can continue. CyclicBarrier can be used to coordinate the execution of multiple threads so that they can execute simultaneously at a certain point. How to use CyclicBar

See all articles