AbstractQueuedSynchronizer.ReleaseShared(Int32) 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.
Releases in shared mode.
[Android.Runtime.Register("releaseShared", "(I)Z", "")]
public bool ReleaseShared (int arg);
[<Android.Runtime.Register("releaseShared", "(I)Z", "")>]
member this.ReleaseShared : int -> bool
Parameters
- arg
- Int32
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.AbstractQueuedSynchronizer.releaseShared(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.