AbstractQueuedLongSynchronizer.Release(Int64) Method

Definition

Releases in exclusive mode.

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

Parameters

arg
Int64

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

Returns

the value returned from #tryRelease

Attributes

Remarks

Releases in exclusive mode. Implemented by unblocking one or more threads if #tryRelease returns true. This method can be used to implement method Lock#unlock.

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