AbstractQueuedSynchronizer.AcquireSharedInterruptibly(Int32) Method

Definition

Acquires in shared mode, aborting if interrupted.

[Android.Runtime.Register("acquireSharedInterruptibly", "(I)V", "")]
public void AcquireSharedInterruptibly (int arg);
[<Android.Runtime.Register("acquireSharedInterruptibly", "(I)V", "")>]
member this.AcquireSharedInterruptibly : int -> unit

Parameters

arg
Int32

the acquire argument. This value is conveyed to #tryAcquireShared but is otherwise uninterpreted and can represent anything you like.

Attributes

Exceptions

if the current thread is interrupted

Remarks

Acquires in shared mode, aborting if interrupted. Implemented by first checking interrupt status, then invoking at least once #tryAcquireShared, returning on success. Otherwise the thread is queued, possibly repeatedly blocking and unblocking, invoking #tryAcquireShared until success or the thread is interrupted.

Java documentation for java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireSharedInterruptibly(int).

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.

Applies to