AbstractQueuedLongSynchronizer.ReleaseShared(Int64) Method

Definition

Releases in shared mode.

[Android.Runtime.Register("releaseShared", "(J)Z", "")]
public bool ReleaseShared (long arg);
[<Android.Runtime.Register("releaseShared", "(J)Z", "")>]
member this.ReleaseShared : int64 -> bool

Parameters

arg
Int64

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

Returns

the value returned from #tryReleaseShared

Attributes

Remarks

Releases in shared mode. Implemented by unblocking one or more threads if #tryReleaseShared returns true.

Java documentation for java.util.concurrent.locks.AbstractQueuedLongSynchronizer.releaseShared(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