November 2018
Beginner to intermediate
260 pages
6h 12m
English
Java 5 introduced the java.util.concurrent package for concurrent programming. It contains many useful utility classes, such as the CountDownLatch class for synchronizing threads within a JVM. Apache Ignite's IgniteCountDownLatch synchronizes threads across the cluster nodes.
You can create a IgniteCountDownLatch
using the following syntax: IgniteCountDownLatch latch = ignite.countDownLatch(name, cnt, autoDel, create);
The countDownLatch method accepts the following arguments:
Read now
Unlock full access