Class GridCacheCountDownLatchImpl

    • Method Detail

      • count

        public int count()
        Gets current count value of the latch.
        Specified by:
        count in interface IgniteCountDownLatch
        Returns:
        Current count.
      • initialCount

        public int initialCount()
        Gets initial count value of the latch.
        Specified by:
        initialCount in interface IgniteCountDownLatch
        Returns:
        Initial count.
      • autoDelete

        public boolean autoDelete()
        Gets autoDelete flag. If this flag is true latch is removed from cache when it has been counted down to 0.
        Specified by:
        autoDelete in interface IgniteCountDownLatch
        Returns:
        Value of autoDelete flag.
      • await

        public void await()
        Causes the current thread to wait until the latch has counted down to zero, unless current thread is interrupted.

        If the current count of the latch is zero then this method returns immediately.

        If the current count is greater than zero then the current thread becomes disabled for thread scheduling purposes and lies dormant until one of two things happen:

        If the current thread:

        • has its interrupted status set on entry to this method; or
        • is interrupted while waiting,
        then IgniteInterruptedCheckedException is thrown and the current thread's interrupted status is cleared.
        Specified by:
        await in interface IgniteCountDownLatch
      • await

        public boolean await​(long timeout,
                             TimeUnit unit)
        Causes the current thread to wait until the latch has counted down to zero, unless the thread is interrupted, or the specified waiting time elapses.

        If the current count is zero then this method returns immediately with the value true.

        If the current count is greater than zero then the current thread becomes disabled for thread scheduling purposes and lies dormant until one of three things happen:

        • The count reaches zero due to invocations of the IgniteCountDownLatch.countDown() method on any node; or
        • Some other thread interrupts the current thread; or
        • The specified waiting time elapses.

        If the count reaches zero then the method returns with the value true.

        If the current thread:

        • has its interrupted status set on entry to this method; or
        • is interrupted while waiting,
        then IgniteInterruptedCheckedException is thrown and the current thread's interrupted status is cleared.

        If the specified waiting time elapses then the value false is returned. If the time is less than or equal to zero, the method will not wait at all.

        Specified by:
        await in interface IgniteCountDownLatch
        Parameters:
        timeout - The maximum time to wait.
        unit - The time unit of the timeout argument.
        Returns:
        True if the count reached zero and false if the waiting time elapsed before the count reached zero.
      • await

        public boolean await​(long timeout)
        Causes the current thread to wait until the latch has counted down to zero, unless the thread is interrupted, or the specified waiting time elapses.

        If the current count is zero then this method returns immediately with the value true.

        If the current count is greater than zero then the current thread becomes disabled for thread scheduling purposes and lies dormant until one of three things happen:

        • The count reaches zero due to invocations of the IgniteCountDownLatch.countDown() method on any node; or
        • Some other thread interrupts the current thread; or
        • The specified waiting time elapses.

        If the count reaches zero then the method returns with the value true.

        If the current thread:

        • has its interrupted status set on entry to this method; or
        • is interrupted while waiting,
        then IgniteInterruptedCheckedException is thrown and the current thread's interrupted status is cleared.

        If the specified waiting time elapses then the value false is returned. If the time is less than or equal to zero, the method will not wait at all.

        Specified by:
        await in interface IgniteCountDownLatch
        Parameters:
        timeout - The maximum time to wait in milliseconds.
        Returns:
        True if the count reached zero and false if the waiting time elapsed before the count reached zero.
      • countDown

        public int countDown()
        Decrements the count of the latch, releasing all waiting threads on all nodes if the count reaches zero.

        If the current count is greater than zero then it is decremented. If the new count is zero then all waiting threads are re-enabled for thread scheduling purposes.

        If the current count equals zero then nothing happens.

        Specified by:
        countDown in interface IgniteCountDownLatch
        Returns:
        Count after decrement.
      • countDown

        public int countDown​(int val)
        Decreases the count of the latch using passed in value, releasing all waiting threads on all nodes if the count reaches zero.

        If the current count is greater than zero then it is decreased. If the new count is zero then all waiting threads are re-enabled for thread scheduling purposes.

        If the current count equals zero then nothing happens.

        Specified by:
        countDown in interface IgniteCountDownLatch
        Parameters:
        val - Value to decrease counter on.
        Returns:
        Count after decreasing.
      • countDownAll

        public void countDownAll()
        Counts down this latch to zero, releasing all waiting threads on all nodes.

        If the current count equals zero then nothing happens.

        Specified by:
        countDownAll in interface IgniteCountDownLatch
      • onUpdate

        public void onUpdate​(int cnt)
        Callback to notify latch on changes.
        Specified by:
        onUpdate in interface GridCacheCountDownLatchEx
        Parameters:
        cnt - New count.