AbstractQueuedLongSynchronizer.ConditionObject.AwaitNanos(Int64) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Implémente une attente de condition chronométrée.
[Android.Runtime.Register("awaitNanos", "(J)J", "")]
public long AwaitNanos (long nanosTimeout);
[<Android.Runtime.Register("awaitNanos", "(J)J", "")>]
abstract member AwaitNanos : int64 -> int64
override this.AwaitNanos : int64 -> int64
Paramètres
- nanosTimeout
- Int64
durée maximale d’attente, en nanosecondes
Retours
Implémente
- Attributs
Exceptions
Remarques
Implémente une attente de condition chronométrée. <ol><li>If current thread is interruption, throw InterruptedException. <li>Enregistrer l’état de verrouillage retourné par #getState
. <li>Invoke #release
avec l’état enregistré en tant qu’argument, lève IllegalMonitorStateException en cas d’échec. <li>Block jusqu’à ce qu’il soit signalé, interrompu ou expiré. <li>Reacquire en appelant une version spécialisée de l’état #acquire
enregistré en tant qu’argument. <li>If interruption while blocked in step 4, throw InterruptedException. </ol>
Les parties de cette page sont des modifications basées sur le travail créé et partagé par le projet Android Open Source et utilisés en fonction des termes décrits dans la licence d’attribution Creative Commons 2.5.