LockSupport Class
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.
Basic thread blocking primitives for creating locks and other synchronization classes.
[Android.Runtime.Register("java/util/concurrent/locks/LockSupport", DoNotGenerateAcw=true)]
public class LockSupport : Java.Lang.Object
[<Android.Runtime.Register("java/util/concurrent/locks/LockSupport", DoNotGenerateAcw=true)>]
type LockSupport = class
inherit Object
- Inheritance
- Attributes
Remarks
Basic thread blocking primitives for creating locks and other synchronization classes.
This class associates, with each thread that uses it, a permit (in the sense of the java.util.concurrent.Semaphore Semaphore
class). A call to park
will return immediately if the permit is available, consuming it in the process; otherwise it <em>may</em> block. A call to unpark
makes the permit available, if it was not already available. (Unlike with Semaphores though, permits do not accumulate. There is at most one.) Reliable usage requires the use of volatile (or atomic) variables to control when to park or unpark. Orderings of calls to these methods are maintained with respect to volatile variable accesses, but not necessarily non-volatile variable accesses.
Methods park
and unpark
provide efficient means of blocking and unblocking threads that do not encounter the problems that cause the deprecated methods Thread.suspend
and Thread.resume
to be unusable for such purposes: Races between one thread invoking park
and another thread trying to unpark
it will preserve liveness, due to the permit. Additionally, park
will return if the caller's thread was interrupted, and timeout versions are supported. The park
method may also return at any other time, for "no reason", so in general must be invoked within a loop that rechecks conditions upon return. In this sense park
serves as an optimization of a "busy wait" that does not waste as much time spinning, but must be paired with an unpark
to be effective.
The three forms of park
each also support a blocker
object parameter. This object is recorded while the thread is blocked to permit monitoring and diagnostic tools to identify the reasons that threads are blocked. (Such tools may access blockers using method #getBlocker(Thread)
.) The use of these forms rather than the original forms without this parameter is strongly encouraged. The normal argument to supply as a blocker
within a lock implementation is this
.
These methods are designed to be used as tools for creating higher-level synchronization utilities, and are not in themselves useful for most concurrency control applications. The park
method is designed for use only in constructions of the form:
{@code
while (!canProceed()) {
// ensure request to unpark is visible to other threads
...
LockSupport.park(this);
}}
where no actions by the thread publishing a request to unpark, prior to the call to park
, entail locking or blocking. Because only one permit is associated with each thread, any intermediary uses of park
, including implicitly via class loading, could lead to an unresponsive thread (a "lost unpark").
<b>Sample Usage.</b> Here is a sketch of a first-in-first-out non-reentrant lock class:
{@code
class FIFOMutex {
private final AtomicBoolean locked = new AtomicBoolean(false);
private final Queue<Thread> waiters
= new ConcurrentLinkedQueue<>();
public void lock() {
boolean wasInterrupted = false;
// publish current thread for unparkers
waiters.add(Thread.currentThread());
// Block while not first in queue or cannot acquire lock
while (waiters.peek() != Thread.currentThread() ||
!locked.compareAndSet(false, true)) {
LockSupport.park(this);
// ignore interrupts while waiting
if (Thread.interrupted())
wasInterrupted = true;
}
waiters.remove();
// ensure correct interrupt status on return
if (wasInterrupted)
Thread.currentThread().interrupt();
}
public void unlock() {
locked.set(false);
LockSupport.unpark(waiters.peek());
}
static {
// Reduce the risk of "lost unpark" due to classloading
Class<?> ensureLoaded = LockSupport.class;
}
}}
Added in 1.5.
Java documentation for java.util.concurrent.locks.LockSupport
.
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.
Constructors
LockSupport(IntPtr, JniHandleOwnership) |
A constructor used when creating managed representations of JNI objects; called by the runtime. |
Properties
Class |
Returns the runtime class of this |
Handle |
The handle to the underlying Android instance. (Inherited from Object) |
JniIdentityHashCode | (Inherited from Object) |
JniPeerMembers | |
PeerReference | (Inherited from Object) |
ThresholdClass |
This API supports the Mono for Android infrastructure and is not intended to be used directly from your code. |
ThresholdType |
This API supports the Mono for Android infrastructure and is not intended to be used directly from your code. |
Methods
Clone() |
Creates and returns a copy of this object. (Inherited from Object) |
Dispose() | (Inherited from Object) |
Dispose(Boolean) | (Inherited from Object) |
Equals(Object) |
Indicates whether some other object is "equal to" this one. (Inherited from Object) |
GetBlocker(Thread) |
Returns the blocker object supplied to the most recent invocation of a park method that has not yet unblocked, or null if not blocked. |
GetHashCode() |
Returns a hash code value for the object. (Inherited from Object) |
JavaFinalize() |
Called by the garbage collector on an object when garbage collection determines that there are no more references to the object. (Inherited from Object) |
Notify() |
Wakes up a single thread that is waiting on this object's monitor. (Inherited from Object) |
NotifyAll() |
Wakes up all threads that are waiting on this object's monitor. (Inherited from Object) |
Park() |
Disables the current thread for thread scheduling purposes unless the permit is available. |
Park(Object) |
Disables the current thread for thread scheduling purposes unless the permit is available. |
ParkNanos(Int64) |
Disables the current thread for thread scheduling purposes, for up to the specified waiting time, unless the permit is available. |
ParkNanos(Object, Int64) |
Disables the current thread for thread scheduling purposes, for up to the specified waiting time, unless the permit is available. |
ParkUntil(Int64) |
Disables the current thread for thread scheduling purposes, until the specified deadline, unless the permit is available. |
ParkUntil(Object, Int64) |
Disables the current thread for thread scheduling purposes, until the specified deadline, unless the permit is available. |
SetCurrentBlocker(Object) |
Sets the object to be returned by invocations of |
SetHandle(IntPtr, JniHandleOwnership) |
Sets the Handle property. (Inherited from Object) |
ToArray<T>() | (Inherited from Object) |
ToString() |
Returns a string representation of the object. (Inherited from Object) |
Unpark(Thread) |
Makes available the permit for the given thread, if it was not already available. |
UnregisterFromRuntime() | (Inherited from Object) |
Wait() |
Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>. (Inherited from Object) |
Wait(Int64, Int32) |
Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed. (Inherited from Object) |
Wait(Int64) |
Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed. (Inherited from Object) |
Explicit Interface Implementations
IJavaPeerable.Disposed() | (Inherited from Object) |
IJavaPeerable.DisposeUnlessReferenced() | (Inherited from Object) |
IJavaPeerable.Finalized() | (Inherited from Object) |
IJavaPeerable.JniManagedPeerState | (Inherited from Object) |
IJavaPeerable.SetJniIdentityHashCode(Int32) | (Inherited from Object) |
IJavaPeerable.SetJniManagedPeerState(JniManagedPeerStates) | (Inherited from Object) |
IJavaPeerable.SetPeerReference(JniObjectReference) | (Inherited from Object) |
Extension Methods
JavaCast<TResult>(IJavaObject) |
Performs an Android runtime-checked type conversion. |
JavaCast<TResult>(IJavaObject) | |
GetJniTypeName(IJavaPeerable) |