AbstractQueuedLongSynchronizer.AcquireShared(Int64) Method

Definition

Acquires in shared mode, ignoring interrupts.

[Android.Runtime.Register("acquireShared", "(J)V", "")]
public void AcquireShared (long arg);
[<Android.Runtime.Register("acquireShared", "(J)V", "")>]
member this.AcquireShared : int64 -> unit

Parameters

arg
Int64

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

Attributes

Remarks

Acquires in shared mode, ignoring interrupts. Implemented by first invoking at least once #tryAcquireShared, returning on success. Otherwise the thread is queued, possibly repeatedly blocking and unblocking, invoking #tryAcquireShared until success.

Java documentation for java.util.concurrent.locks.AbstractQueuedLongSynchronizer.acquireShared(long).

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