UrbanPro
true

Learn Advanced Java coaching from the Best Tutors

  • Affordable fees
  • 1-1 or Group class
  • Flexible Timings
  • Verified Tutors

Search in

Java Concurrency Model - CountDownLatch

Somenath Mukhopadhyay
04/04/2017 0 0

What is CountDownLatch in Java?

CountDownLatch in Java is a kind of synchronizer which allows one Thread to wait for one or more Threads before starts processing. This is very crucial requirement and often needed in server side core Java application and having this functionality built-in as CountDownLatch greatly simplifies the development. CountDownLatch in Java is introduced on Java 5 along with other concurrent utilities like CyclicBarrier, Semaphore, ConcurrentHashMap and BlockingQueue in java.util.concurrent package. In this Java concurrency tutorial we will learn what is CountDownLatch in Java, How CountDownLatch works in Java, an example of CountDownLatch in Java and finally some worth noting points about this concurrent utility. You can also implement same functionality using wait and notify mechanism in Java but it requires lot of code and getting it write in first attempt is tricky,  With CountDownLatch it can  be done in just few lines. CountDownLatch also allows flexibility on number of thread for which main thread should wait. It can wait for one thread or n number of thread, there is not much change on code.

Class CountDownLatch Demo 

package com.somitsolutions.training.java.ExperimentationWithCountdownLatch;

import java.util.concurrent.CountDownLatch;
import java.util.logging.Level;
import java.util.logging.Logger;

public class CountDownLatchDemo {

   public static void main(String args[]) {
      final CountDownLatch latch = new CountDownLatch(3);
      Thread service1 = new Thread(new Service("Service1", 1000, latch));
      Thread service2 = new Thread(new Service("Service2", 1000, latch));
      Thread service3 = new Thread(new Service("Service3", 1000, latch));
     
      service1.start();

      service2.start();

      service3.start();
     
      // application should not start processing any thread until all service is //up
      // and ready to do there job.
      // Countdown latch is idle choice here, main thread will start with count 3
      // and wait until count reaches zero. each thread once up and read will do
      // a count down. this will ensure that main thread is not started processing
      // until all services is up.
     
      //count is 3 since we have 3 Threads (Services)
     
      try{
           latch.await();  //main thread is waiting on CountDownLatch to finish
           System.out.println("All services are up, Application is starting now");
      }catch(InterruptedException ie){
          ie.printStackTrace();
      }
     
   }
 
}

/**
* Service class which will be executed by Thread using CountDownLatch synchronizer.
*/
class Service implements Runnable{
   private final String name;
   private final int timeToStart;
   private final CountDownLatch latch;
 
   public Service(String name, int timeToStart, CountDownLatch latch){
       this.name = name;
       this.timeToStart = timeToStart;
       this.latch = latch;
   }
 
   @Override
   public void run() {
       try {

//Do all the processing. Here we have just made the thread sleep
           Thread.sleep(timeToStart);
       } catch (InterruptedException ex) {
           Logger.getLogger(Service.class.getName()).log(Level.SEVERE, null, ex);
       }
       System.out.println(

0 Dislike
Follow 0

Please Enter a comment

Submit

Other Lessons for You

Fractional Knapsack
Algorithm - Fractional Knapsack import java.util.Scanner; public class Knapsack01 { public static void main(String args) { Scanner scan = new Scanner(System.in); int...

Git Branching: Basic Branching And Merging
Basic Branching and Merging: Let’s go through a simple example of branching and merging with a workflow that you might use in the real world. You’ll follow these steps: Do work on...

Create Immutable Class
Snippet of an Immutable Class: package com.stringhr; /*Declare the class as 'final'. This would prevent any other class from extending it and hence from overriding any method from it which could modify...

What Is Applet & Its Life Cycle?
What is Applet & its life cycle?Applet is a Java programme that can be embedded into HTML page.Java Applet runs on the java enables web browsers such as Mozilla & Internet Explorer.Applets are...
I

ICreative Solution

0 0
0

Use of Service Locator Pattern
If we want to reuse the java code that should be the best approach w.r.t re-usability, maintanence and saving time to concentrate on our own businbess logic/requirement. In the similar approach many patterns...
M
X

Looking for Advanced Java coaching Classes?

The best tutors for Advanced Java coaching Classes are on UrbanPro

  • Select the best Tutor
  • Book & Attend a Free Demo
  • Pay and start Learning

Learn Advanced Java coaching with the Best Tutors

The best Tutors for Advanced Java coaching Classes are on UrbanPro

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more