use of com.hazelcast.concurrent.countdownlatch.operations.CountDownOperation in project hazelcast by hazelcast.
the class CountDownLatchProxy method countDown.
@Override
public void countDown() {
Operation op = new CountDownOperation(name).setPartitionId(partitionId);
InternalCompletableFuture f = invokeOnPartition(op);
f.join();
}
Aggregations