- java.lang.Object
-
- java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject
-
- All Implemented Interfaces:
- Serializable, Condition
- Enclosing class:
- AbstractQueuedSynchronizer
public class AbstractQueuedSynchronizer.ConditionObject extends Object implements Condition, Serializable
Condition implementation for aAbstractQueuedSynchronizer
serving as the basis of aLock
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 AbstractQueuedSynchronizer.
This class is Serializable, but all fields are transient, so deserialized conditions have no waiters.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description AbstractQueuedSynchronizer.ConditionObject()
Creates a new ConditionObject instance.
-
Method Summary
Methods Modifier and Type Method and Description void
await()
Implements interruptible condition wait.boolean
await(long time, TimeUnit unit)
Implements timed condition wait.long
awaitNanos(long nanosTimeout)
Implements timed condition wait.void
awaitUninterruptibly()
Implements uninterruptible condition wait.boolean
awaitUntil(Date deadline)
Implements absolute timed condition wait.protected Collection<Thread>
getWaitingThreads()
Returns a collection containing those threads that may be waiting on this Condition.protected int
getWaitQueueLength()
Returns an estimate of the number of threads waiting on this condition.protected boolean
hasWaiters()
Queries whether any threads are waiting on this condition.void
signal()
Moves the longest-waiting thread, if one exists, from the wait queue for this condition to the wait queue for the owning lock.void
signalAll()
Moves all threads from the wait queue for this condition to the wait queue for the owning lock.
-
-
-
Constructor Detail
-
AbstractQueuedSynchronizer.ConditionObject
public AbstractQueuedSynchronizer.ConditionObject()
Creates a new ConditionObject instance.
-
-
Method Detail
-
signal
public final void signal()
Moves the longest-waiting thread, if one exists, from the wait queue for this condition to the wait queue for the owning lock.- Specified by:
signal
in interfaceCondition
- Throws:
IllegalMonitorStateException
- ifAbstractQueuedSynchronizer.isHeldExclusively()
returnsfalse
-
signalAll
public final void signalAll()
Moves all threads from the wait queue for this condition to the wait queue for the owning lock.- Specified by:
signalAll
in interfaceCondition
- Throws:
IllegalMonitorStateException
- ifAbstractQueuedSynchronizer.isHeldExclusively()
returnsfalse
-
awaitUninterruptibly
public final void awaitUninterruptibly()
Implements uninterruptible condition wait.- Save lock state returned by
AbstractQueuedSynchronizer.getState()
. - Invoke
AbstractQueuedSynchronizer.release(int)
with saved state as argument, throwing IllegalMonitorStateException if it fails. - Block until signalled.
- Reacquire by invoking specialized version of
AbstractQueuedSynchronizer.acquire(int)
with saved state as argument.
- Specified by:
awaitUninterruptibly
in interfaceCondition
- Save lock state returned by
-
await
public final void await() throws InterruptedException
Implements interruptible condition wait.- If current thread is interrupted, throw InterruptedException.
- Save lock state returned by
AbstractQueuedSynchronizer.getState()
. - Invoke
AbstractQueuedSynchronizer.release(int)
with saved state as argument, throwing IllegalMonitorStateException if it fails. - Block until signalled or interrupted.
- Reacquire by invoking specialized version of
AbstractQueuedSynchronizer.acquire(int)
with saved state as argument. - If interrupted while blocked in step 4, throw InterruptedException.
- Specified by:
await
in interfaceCondition
- Throws:
InterruptedException
- if the current thread is interrupted (and interruption of thread suspension is supported)
-
awaitNanos
public final long awaitNanos(long nanosTimeout) throws InterruptedException
Implements timed condition wait.- If current thread is interrupted, throw InterruptedException.
- Save lock state returned by
AbstractQueuedSynchronizer.getState()
. - Invoke
AbstractQueuedSynchronizer.release(int)
with saved state as argument, throwing IllegalMonitorStateException if it fails. - Block until signalled, interrupted, or timed out.
- Reacquire by invoking specialized version of
AbstractQueuedSynchronizer.acquire(int)
with saved state as argument. - If interrupted while blocked in step 4, throw InterruptedException.
- Specified by:
awaitNanos
in interfaceCondition
- Parameters:
nanosTimeout
- the maximum time to wait, in nanoseconds- Returns:
- an estimate of the
nanosTimeout
value minus the time spent waiting upon return from this method. A positive value may be used as the argument to a subsequent call to this method to finish waiting out the desired time. A value less than or equal to zero indicates that no time remains. - Throws:
InterruptedException
- if the current thread is interrupted (and interruption of thread suspension is supported)
-
awaitUntil
public final boolean awaitUntil(Date deadline) throws InterruptedException
Implements absolute timed condition wait.- If current thread is interrupted, throw InterruptedException.
- Save lock state returned by
AbstractQueuedSynchronizer.getState()
. - Invoke
AbstractQueuedSynchronizer.release(int)
with saved state as argument, throwing IllegalMonitorStateException if it fails. - Block until signalled, interrupted, or timed out.
- Reacquire by invoking specialized version of
AbstractQueuedSynchronizer.acquire(int)
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:
awaitUntil
in interfaceCondition
- Parameters:
deadline
- the absolute time to wait until- Returns:
false
if the deadline has elapsed upon return, elsetrue
- Throws:
InterruptedException
- if the current thread is interrupted (and interruption of thread suspension is supported)
-
await
public final boolean await(long time, TimeUnit unit) throws InterruptedException
Implements timed condition wait.- If current thread is interrupted, throw InterruptedException.
- Save lock state returned by
AbstractQueuedSynchronizer.getState()
. - Invoke
AbstractQueuedSynchronizer.release(int)
with saved state as argument, throwing IllegalMonitorStateException if it fails. - Block until signalled, interrupted, or timed out.
- Reacquire by invoking specialized version of
AbstractQueuedSynchronizer.acquire(int)
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:
await
in interfaceCondition
- Parameters:
time
- the maximum time to waitunit
- the time unit of thetime
argument- Returns:
false
if the waiting time detectably elapsed before return from the method, elsetrue
- Throws:
InterruptedException
- if the current thread is interrupted (and interruption of thread suspension is supported)
-
hasWaiters
protected final boolean hasWaiters()
Queries whether any threads are waiting on this condition. ImplementsAbstractQueuedSynchronizer.hasWaiters(java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject)
.- Returns:
true
if there are any waiting threads- Throws:
IllegalMonitorStateException
- ifAbstractQueuedSynchronizer.isHeldExclusively()
returnsfalse
-
getWaitQueueLength
protected final int getWaitQueueLength()
Returns an estimate of the number of threads waiting on this condition. ImplementsAbstractQueuedSynchronizer.getWaitQueueLength(java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject)
.- Returns:
- the estimated number of waiting threads
- Throws:
IllegalMonitorStateException
- ifAbstractQueuedSynchronizer.isHeldExclusively()
returnsfalse
-
getWaitingThreads
protected final Collection<Thread> getWaitingThreads()
Returns a collection containing those threads that may be waiting on this Condition. ImplementsAbstractQueuedSynchronizer.getWaitingThreads(java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject)
.- Returns:
- the collection of threads
- Throws:
IllegalMonitorStateException
- ifAbstractQueuedSynchronizer.isHeldExclusively()
returnsfalse
-
-
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-java/util/concurrent/locks/AbstractQueuedSynchronizer.ConditionObject.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.