API java : AbstractQueuedSynchronizer.ConditionObject


java.util.concurrent.locks
Class AbstractQueuedSynchronizer.ConditionObject

java.lang.Object
  extended by 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 a AbstractQueuedSynchronizer 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 AbstractQueuedSynchronizer.

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

See Also:
Serialized Form

Constructor Summary
AbstractQueuedSynchronizer.ConditionObject()
          Creates a new ConditionObject instance.
 
Method Summary
 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.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

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 interface Condition
Throws:
IllegalMonitorStateException - if AbstractQueuedSynchronizer.isHeldExclusively() returns false

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 interface Condition
Throws:
IllegalMonitorStateException - if AbstractQueuedSynchronizer.isHeldExclusively() returns false

awaitUninterruptibly

public final void awaitUninterruptibly()
Implements uninterruptible condition wait.
  1. Save lock state returned by AbstractQueuedSynchronizer.getState()
  2. Invoke AbstractQueuedSynchronizer.release(int) with saved state as argument, throwing IllegalMonitorStateException if it fails.
  3. Block until signalled
  4. Reacquire by invoking specialized version of AbstractQueuedSynchronizer.acquire(int) with saved state as argument.

Specified by:
awaitUninterruptibly in interface Condition

await

public final void await()
                 throws InterruptedException
Implements interruptible condition wait.
  1. If current thread is interrupted, throw InterruptedException
  2. Save lock state returned by AbstractQueuedSynchronizer.getState()
  3. Invoke AbstractQueuedSynchronizer.release(int) with saved state as argument, throwing IllegalMonitorStateException if it fails.
  4. Block until signalled or interrupted
  5. Reacquire by invoking specialized version of AbstractQueuedSynchronizer.acquire(int) with saved state as argument.
  6. If interrupted while blocked in step 4, throw exception

Specified by:
await in interface Condition
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.
  1. If current thread is interrupted, throw InterruptedException
  2. Save lock state returned by AbstractQueuedSynchronizer.getState()
  3. Invoke AbstractQueuedSynchronizer.release(int) with saved state as argument, throwing IllegalMonitorStateException if it fails.
  4. Block until signalled, interrupted, or timed out
  5. Reacquire by invoking specialized version of AbstractQueuedSynchronizer.acquire(int) with saved state as argument.
  6. If interrupted while blocked in step 4, throw InterruptedException

Specified by:
awaitNanos in interface Condition
Parameters:
nanosTimeout - the maximum time to wait, in nanoseconds
Returns:
A value less than or equal to zero if the wait has timed out; otherwise an estimate, that is strictly less than the nanosTimeout argument, of the time still remaining when this method returned.
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.
  1. If current thread is interrupted, throw InterruptedException
  2. Save lock state returned by AbstractQueuedSynchronizer.getState()
  3. Invoke AbstractQueuedSynchronizer.release(int) with saved state as argument, throwing IllegalMonitorStateException if it fails.
  4. Block until signalled, interrupted, or timed out
  5. Reacquire by invoking specialized version of AbstractQueuedSynchronizer.acquire(int) with saved state as argument.
  6. If interrupted while blocked in step 4, throw InterruptedException
  7. If timed out while blocked in step 4, return false, else true

Specified by:
awaitUntil in interface Condition
Parameters:
deadline - the absolute time to wait until
Returns:
false if the deadline has elapsed upon return, else true.
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.
  1. If current thread is interrupted, throw InterruptedException
  2. Save lock state returned by AbstractQueuedSynchronizer.getState()
  3. Invoke AbstractQueuedSynchronizer.release(int) with saved state as argument, throwing IllegalMonitorStateException if it fails.
  4. Block until signalled, interrupted, or timed out
  5. Reacquire by invoking specialized version of AbstractQueuedSynchronizer.acquire(int) with saved state as argument.
  6. If interrupted while blocked in step 4, throw InterruptedException
  7. If timed out while blocked in step 4, return false, else true

Specified by:
await in interface Condition
Parameters:
time - the maximum time to wait
unit - the time unit of the time argument.
Returns:
false if the waiting time detectably elapsed before return from the method, else true.
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. Implements AbstractQueuedSynchronizer.hasWaiters(java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject)

Returns:
true if there are any waiting threads.
Throws:
IllegalMonitorStateException - if AbstractQueuedSynchronizer.isHeldExclusively() returns false

getWaitQueueLength

protected final int getWaitQueueLength()
Returns an estimate of the number of threads waiting on this condition. Implements AbstractQueuedSynchronizer.getWaitQueueLength(java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject)

Returns:
the estimated number of waiting threads.
Throws:
IllegalMonitorStateException - if AbstractQueuedSynchronizer.isHeldExclusively() returns false

getWaitingThreads

protected final Collection<Thread> getWaitingThreads()
Returns a collection containing those threads that may be waiting on this Condition. Implements AbstractQueuedSynchronizer.getWaitingThreads(java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject)

Returns:
the collection of threads
Throws:
IllegalMonitorStateException - if AbstractQueuedSynchronizer.isHeldExclusively() returns false

Ces informations proviennent du site de http://java.sun.com

Remarques

Contenu

Le contenu de cette page provient du site de Sun, et est généré depuis un cache sur l'infobrol après certains traitements automatisés. La présentation peut donc différer du document original, mais le contenu aussi. Vous pouvez utiliser ce bouton pour afficher la page originale du site de Sun :

Quels sont les motivations de cette démarche?

Maintenir les pages en cache sur différents sites peut offrir plus de disponibilité.

Chaque page est indexée dans la base de donnée, ce qui permet de retrouver facilement les informations, au moyen des sommaires, du moteur de recherche interne, etc.

Des facilités sont mises en place pour que les membres de l'infobrol puissent effectuer des traductions en français des différents documents. Ceci devrait permettre aux débutants en programmation Java de consulter les API en français s'ils maîtrisent moins bien la langue de Shakespeare. Dans le cas où une traduction a été soumise, elle est disponible au moyen d'un lien en bas de page. Si la traduction a été validée, la page s'affiche par défaut en français, et un lien en bas de page permet d'atteindre la version en anglais.

Le code sur l'infobrol est automatiquement coloré selon la syntaxe, et les différents mots clés sont transformés en liens pour accéder rapidement aux informations.

Vous avez la possibilité de partager vos expériences en proposant vos propres extraits de code en utilisant le bouton "ajouter un commentaire" en bas de page. Si vous visitez simplement l'infobrol, vous avez déjà accès à cette fonction, mais si vous étes membre du brol, vous pouvez en plus utiliser des boutons supplémentaires de mise en forme, dont la coloration automatique de vos extraits de codes.

Réseaux sociaux

Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher les interactions avec les réseaux sociaux sur ces pages.

 

Nuage de mots clés

10 mots clés dont 0 définis manuellement (plus d'information...).

Avertissement

Cette page ne possède pas encore de mots clés manuels, ceci est donc un exemple automatique (les niveaux de pertinence sont fictifs, mais les liens sont valables). Pour tester le nuage avec une page qui contient des mots définis manuellement, vous pouvez cliquer ici.

Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher le nuage de mots clés.

 

Astuce pour imprimer les couleurs des cellules de tableaux : http://www.gaudry.be/ast-rf-450.html
Aucun commentaire pour cette page

© Ce document issu de l′infobrol est enregistré sous le certificat Cyber PrInterDeposit Digital Numbertection. Enregistrement IDDN n° 5329-9430
Document créé le 08/12/06 01:57, dernière modification le Vendredi 17 Juin 2011, 12:12
Source du document imprimé : http://www.gaudry.be/java-api-rf-java/util/concurrent/locks/AbstractQueuedSynchronizer.ConditionObject.html Document affiché 1 fois ce mois de Juin.
St.Gaudry©07.01.02
 
l'infobrol
Nous sommes le Vendredi 01 Juin 2012, 20:00, toutes les heures sont au format GMT+1.00 Heure, heure d'été (+1)