Class AbstractQueuedLongSynchronizer.ConditionObject

java.lang.Object
java.util.concurrent.locks.AbstractQueuedLongSynchronizer.ConditionObject
All Implemented Interfaces:
Serializable, Condition
Enclosing class:
AbstractQueuedLongSynchronizer

public class AbstractQueuedLongSynchronizer.ConditionObject extends Object implements Condition, Serializable
Condition implementation for a AbstractQueuedLongSynchronizer serving as the basis of a Lock implementation.

Method documentation for this class describes mechanics, not behavioral specifications from the point of view of Lock and Condition users. Exported versions of this class will in general need to be accompanied by documentation describing condition semantics that rely on those of the associated AbstractQueuedLongSynchronizer.

This class is Serializable, but all fields are transient, so deserialized conditions have no waiters.

Since:
1.6
See Also:
  • Constructor Summary

    Constructors
    Constructor
    Description
    Creates a new ConditionObject instance.
  • Method Summary

    Modifier and Type
    Method
    Description
    final void
    Implements interruptible condition wait.
    final boolean
    await(long time, TimeUnit unit)
    Implements timed condition wait.
    final long
    awaitNanos(long nanosTimeout)
    Implements timed condition wait.
    final void
    Implements uninterruptible condition wait.
    final boolean
    awaitUntil(Date deadline)
    Implements absolute timed condition wait.
    protected final Collection<Thread>
    Returns a collection containing those threads that may be waiting on this Condition.
    protected final int
    Returns an estimate of the number of threads waiting on this condition.
    protected final boolean
    Queries whether any threads are waiting on this condition.
    final void
    Moves the longest-waiting thread, if one exists, from the wait queue for this condition to the wait queue for the owning lock.
    final void
    Moves all threads from the wait queue for this condition to the wait queue for the owning lock.

    Methods inherited from class Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ConditionObject

      public ConditionObject()
      Creates a new ConditionObject instance.
  • Method Details