AbstractQueuedLongSynchronizer.HasWaiters Method

Definition

Queries whether any threads are waiting on the given condition associated with this synchronizer.

[Android.Runtime.Register("hasWaiters", "(Ljava/util/concurrent/locks/AbstractQueuedLongSynchronizer$ConditionObject;)Z", "")]
public bool HasWaiters (Java.Util.Concurrent.Locks.AbstractQueuedLongSynchronizer.ConditionObject? condition);
[<Android.Runtime.Register("hasWaiters", "(Ljava/util/concurrent/locks/AbstractQueuedLongSynchronizer$ConditionObject;)Z", "")>]
member this.HasWaiters : Java.Util.Concurrent.Locks.AbstractQueuedLongSynchronizer.ConditionObject -> bool

Parameters

Returns

true if there are any waiting threads

Attributes

Exceptions

if exclusive synchronization is not held

if the given condition is not associated with this synchronizer

if the condition is null

Remarks

Java documentation for java.util.concurrent.locks.AbstractQueuedLongSynchronizer.hasWaiters(java.util.concurrent.locks.ConditionObject).

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