AbstractQueuedSynchronizer.ConditionObject.Await 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Await() |
實作可中斷的條件等候。 |
Await(Int64, TimeUnit) |
實作計時條件等候。 |
Await()
實作可中斷的條件等候。
[Android.Runtime.Register("await", "()V", "")]
public void Await ();
[<Android.Runtime.Register("await", "()V", "")>]
abstract member Await : unit -> unit
override this.Await : unit -> unit
實作
- 屬性
例外狀況
備註
實作可中斷的條件等候。 <ol><li>如果目前的線程中斷,則擲回 InterruptedException。 <li>儲存 所 #getState
傳回的鎖定狀態。 <li>Invoke #release
with saved state as argument, throwing IllegalMonitorStateException if it failsing. <li>封鎖直到發出訊號或中斷為止。 <li>Reacquire 藉由叫用具有已儲存狀態作為自變數的 #acquire
特製化版本。 <li>如果在步驟 4 中封鎖時中斷,則擲回 InterruptedException。 </老>
的 java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject.await()
Java 檔。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
適用於
Await(Int64, TimeUnit)
實作計時條件等候。
[Android.Runtime.Register("await", "(JLjava/util/concurrent/TimeUnit;)Z", "")]
public bool Await (long time, Java.Util.Concurrent.TimeUnit? unit);
[<Android.Runtime.Register("await", "(JLjava/util/concurrent/TimeUnit;)Z", "")>]
abstract member Await : int64 * Java.Util.Concurrent.TimeUnit -> bool
override this.Await : int64 * Java.Util.Concurrent.TimeUnit -> bool
參數
- time
- Int64
等候的時間上限
- unit
- TimeUnit
自變數的時間單位time
傳回
實作
- 屬性
例外狀況
備註
實作計時條件等候。 <ol><li>如果目前的線程中斷,則擲回 InterruptedException。 <li>儲存 所 #getState
傳回的鎖定狀態。 <li>Invoke #release
with saved state as argument, throwing IllegalMonitorStateException if it failsing. <li>區塊直到發出訊號、中斷或逾時為止。 <li>Reacquire 藉由叫用具有已儲存狀態作為自變數的 #acquire
特製化版本。 <li>如果在步驟 4 中封鎖時中斷,則擲回 InterruptedException。 <li>如果在步驟 4 中封鎖時逾時,則傳回 false,否則為 true。 </老>
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。