AbstractQueuedSynchronizer.ConditionObject.AwaitUninterruptibly Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Implements uninterruptible condition wait.
[Android.Runtime.Register("awaitUninterruptibly", "()V", "")]
public void AwaitUninterruptibly ();
[<Android.Runtime.Register("awaitUninterruptibly", "()V", "")>]
abstract member AwaitUninterruptibly : unit -> unit
override this.AwaitUninterruptibly : unit -> unit
Implements
- Attributes
Remarks
Implements uninterruptible condition wait. <ol> <li>Save lock state returned by #getState
. <li>Invoke #release
with saved state as argument, throwing IllegalMonitorStateException if it fails. <li>Block until signalled. <li>Reacquire by invoking specialized version of #acquire
with saved state as argument. </ol>
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.