Class AbstractQueuedLongSynchronizer.ConditionObject
- java.lang.Object
-
- co.paralleluniverse.strands.concurrent.AbstractQueuedLongSynchronizer.ConditionObject
-
- All Implemented Interfaces:
java.io.Serializable,java.util.concurrent.locks.Condition
- Enclosing class:
- AbstractQueuedLongSynchronizer
public class AbstractQueuedLongSynchronizer.ConditionObject extends java.lang.Object implements java.util.concurrent.locks.Condition, java.io.SerializableCondition implementation for aAbstractQueuedLongSynchronizerserving as the basis of aLockimplementation.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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConditionObject()Creates a newConditionObjectinstance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidawait()Implements interruptible condition wait.booleanawait(long time, java.util.concurrent.TimeUnit unit)Implements timed condition wait.longawaitNanos(long nanosTimeout)Implements timed condition wait.voidawaitUninterruptibly()Implements uninterruptible condition wait.booleanawaitUntil(java.util.Date deadline)Implements absolute timed condition wait.protected java.util.Collection<Strand>getWaitingStrands()Returns a collection containing those strands that may be waiting on this Condition.protected intgetWaitQueueLength()Returns an estimate of the number of strands waiting on this condition.protected booleanhasWaiters()Queries whether any strands are waiting on this condition.voidsignal()Moves the longest-waiting strand, if one exists, from the wait queue for this condition to the wait queue for the owning lock.voidsignalAll()Moves all strands from the wait queue for this condition to the wait queue for the owning lock.
-
-
-
Method Detail
-
signal
public final void signal()
Moves the longest-waiting strand, if one exists, from the wait queue for this condition to the wait queue for the owning lock.- Specified by:
signalin interfacejava.util.concurrent.locks.Condition- Throws:
java.lang.IllegalMonitorStateException- ifAbstractQueuedLongSynchronizer.isHeldExclusively()returnsfalse
-
signalAll
public final void signalAll()
Moves all strands from the wait queue for this condition to the wait queue for the owning lock.- Specified by:
signalAllin interfacejava.util.concurrent.locks.Condition- Throws:
java.lang.IllegalMonitorStateException- ifAbstractQueuedLongSynchronizer.isHeldExclusively()returnsfalse
-
awaitUninterruptibly
@Suspendable public final void awaitUninterruptibly()
Implements uninterruptible condition wait.- Save lock state returned by
AbstractQueuedLongSynchronizer.getState(). - Invoke
AbstractQueuedLongSynchronizer.release(long)with saved state as argument, throwing IllegalMonitorStateException if it fails. - Block until signalled.
- Reacquire by invoking specialized version of
AbstractQueuedLongSynchronizer.acquire(long)with saved state as argument.
- Specified by:
awaitUninterruptiblyin interfacejava.util.concurrent.locks.Condition
- Save lock state returned by
-
await
public final void await() throws java.lang.InterruptedExceptionImplements interruptible condition wait.- If current strand is interrupted, throw InterruptedException.
- Save lock state returned by
AbstractQueuedLongSynchronizer.getState(). - Invoke
AbstractQueuedLongSynchronizer.release(long)with saved state as argument, throwing IllegalMonitorStateException if it fails. - Block until signalled or interrupted.
- Reacquire by invoking specialized version of
AbstractQueuedLongSynchronizer.acquire(long)with saved state as argument. - If interrupted while blocked in step 4, throw InterruptedException.
- Specified by:
awaitin interfacejava.util.concurrent.locks.Condition- Throws:
java.lang.InterruptedException
-
awaitNanos
@Suspendable public final long awaitNanos(long nanosTimeout) throws java.lang.InterruptedException
Implements timed condition wait.- If current strand is interrupted, throw InterruptedException.
- Save lock state returned by
AbstractQueuedLongSynchronizer.getState(). - Invoke
AbstractQueuedLongSynchronizer.release(long)with saved state as argument, throwing IllegalMonitorStateException if it fails. - Block until signalled, interrupted, or timed out.
- Reacquire by invoking specialized version of
AbstractQueuedLongSynchronizer.acquire(long)with saved state as argument. - If interrupted while blocked in step 4, throw InterruptedException.
- Specified by:
awaitNanosin interfacejava.util.concurrent.locks.Condition- Throws:
java.lang.InterruptedException
-
awaitUntil
@Suspendable public final boolean awaitUntil(java.util.Date deadline) throws java.lang.InterruptedException
Implements absolute timed condition wait.- If current strand is interrupted, throw InterruptedException.
- Save lock state returned by
AbstractQueuedLongSynchronizer.getState(). - Invoke
AbstractQueuedLongSynchronizer.release(long)with saved state as argument, throwing IllegalMonitorStateException if it fails. - Block until signalled, interrupted, or timed out.
- Reacquire by invoking specialized version of
AbstractQueuedLongSynchronizer.acquire(long)with saved state as argument. - If interrupted while blocked in step 4, throw InterruptedException.
- If timed out while blocked in step 4, return false, else true.
- Specified by:
awaitUntilin interfacejava.util.concurrent.locks.Condition- Throws:
java.lang.InterruptedException
-
await
@Suspendable public final boolean await(long time, java.util.concurrent.TimeUnit unit) throws java.lang.InterruptedException
Implements timed condition wait.- If current strand is interrupted, throw InterruptedException.
- Save lock state returned by
AbstractQueuedLongSynchronizer.getState(). - Invoke
AbstractQueuedLongSynchronizer.release(long)with saved state as argument, throwing IllegalMonitorStateException if it fails. - Block until signalled, interrupted, or timed out.
- Reacquire by invoking specialized version of
AbstractQueuedLongSynchronizer.acquire(long)with saved state as argument. - If interrupted while blocked in step 4, throw InterruptedException.
- If timed out while blocked in step 4, return false, else true.
- Specified by:
awaitin interfacejava.util.concurrent.locks.Condition- Throws:
java.lang.InterruptedException
-
hasWaiters
protected final boolean hasWaiters()
Queries whether any strands are waiting on this condition. ImplementsAbstractQueuedLongSynchronizer.hasWaiters(ConditionObject).- Returns:
trueif there are any waiting strands- Throws:
java.lang.IllegalMonitorStateException- ifAbstractQueuedLongSynchronizer.isHeldExclusively()returnsfalse
-
getWaitQueueLength
protected final int getWaitQueueLength()
Returns an estimate of the number of strands waiting on this condition. ImplementsAbstractQueuedLongSynchronizer.getWaitQueueLength(ConditionObject).- Returns:
- the estimated number of waiting strands
- Throws:
java.lang.IllegalMonitorStateException- ifAbstractQueuedLongSynchronizer.isHeldExclusively()returnsfalse
-
getWaitingStrands
protected final java.util.Collection<Strand> getWaitingStrands()
Returns a collection containing those strands that may be waiting on this Condition. ImplementsAbstractQueuedLongSynchronizer.getWaitingStrands(ConditionObject).- Returns:
- the collection of strands
- Throws:
java.lang.IllegalMonitorStateException- ifAbstractQueuedLongSynchronizer.isHeldExclusively()returnsfalse
-
-