java.util.concurrent.locks
Class LockSupport

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.util.concurrent.locks.LockSupport

public class LockSupport
extends Object sample code for java.lang.Object definition code for java.lang.Object

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 Semaphore sample code for java.util.concurrent.Semaphore definition code for java.util.concurrent.Semaphore class). A call to park will return immediately if the permit is available, consuming it in the process; otherwise it may 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.)

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.

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.

Sample Usage. Here is a sketch of a First-in-first-out non-reentrant lock class.

 class FIFOMutex {
   private AtomicBoolean locked = new AtomicBoolean(false);
   private Queue<Thread> waiters = new ConcurrentLinkedQueue<Thread>();

   public void lock() { 
     boolean wasInterrupted = false;
     Thread current = Thread.currentThread();
     waiters.add(current);

     // Block while not first in queue or cannot acquire lock
     while (waiters.peek() != current || 
            !locked.compareAndSet(false, true)) { 
        LockSupport.park();
        if (Thread.interrupted()) // ignore interrupts while waiting
          wasInterrupted = true;
     }

     waiters.remove();
     if (wasInterrupted)          // reassert interrupt status on exit
        current.interrupt();
   }

   public void unlock() {
     locked.set(false);
     LockSupport.unpark(waiters.peek());
   } 
 }
 


Method Summary
static void park sample code for java.util.concurrent.locks.LockSupport.park() definition code for java.util.concurrent.locks.LockSupport.park() ()
          Disables the current thread for thread scheduling purposes unless the permit is available.
static void parkNanos sample code for java.util.concurrent.locks.LockSupport.parkNanos(long) definition code for java.util.concurrent.locks.LockSupport.parkNanos(long) (long nanos)
          Disables the current thread for thread scheduling purposes, for up to the specified waiting time, unless the permit is available.
static void parkUntil sample code for java.util.concurrent.locks.LockSupport.parkUntil(long) definition code for java.util.concurrent.locks.LockSupport.parkUntil(long) (long deadline)
          Disables the current thread for thread scheduling purposes, until the specified deadline, unless the permit is available.
static void unpark sample code for java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread) definition code for java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread) (Thread sample code for java.lang.Thread definition code for java.lang.Thread  thread)
          Make available the permit for the given thread, if it was not already available.
 
Methods inherited from class java.lang.Object sample code for java.lang.Object definition code for java.lang.Object
clone sample code for java.lang.Object.clone() definition code for java.lang.Object.clone() , equals sample code for java.lang.Object.equals(java.lang.Object) definition code for java.lang.Object.equals(java.lang.Object) , finalize sample code for java.lang.Object.finalize() definition code for java.lang.Object.finalize() , getClass sample code for java.lang.Object.getClass() definition code for java.lang.Object.getClass() , hashCode sample code for java.lang.Object.hashCode() definition code for java.lang.Object.hashCode() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() , toString sample code for java.lang.Object.toString() definition code for java.lang.Object.toString() , wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , wait sample code for java.lang.Object.wait(long) definition code for java.lang.Object.wait(long) , wait sample code for java.lang.Object.wait(long, int) definition code for java.lang.Object.wait(long, int)
 

Method Detail

unpark sample code for java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread) definition code for java.util.concurrent.locks.LockSupport.unpark(java.lang.Thread)

public static void unpark(Thread sample code for java.lang.Thread definition code for java.lang.Thread  thread)
Make available the permit for the given thread, if it was not already available. If the thread was blocked on park then it will unblock. Otherwise, its next call to park is guaranteed not to block. This operation is not guaranteed to have any effect at all if the given thread has not been started.

Parameters:
thread - the thread to unpark, or null, in which case this operation has no effect.

park sample code for java.util.concurrent.locks.LockSupport.park() definition code for java.util.concurrent.locks.LockSupport.park()

public static void park()
Disables the current thread for thread scheduling purposes unless the permit is available.

If the permit is available then it is consumed and the call returns immediately; otherwise the current thread becomes disabled for thread scheduling purposes and lies dormant until one of three things happens:

This method does not report which of these caused the method to return. Callers should re-check the conditions which caused the thread to park in the first place. Callers may also determine, for example, the interrupt status of the thread upon return.


parkNanos sample code for java.util.concurrent.locks.LockSupport.parkNanos(long) definition code for java.util.concurrent.locks.LockSupport.parkNanos(long)

public static void parkNanos(long nanos)
Disables the current thread for thread scheduling purposes, for up to the specified waiting time, unless the permit is available.

If the permit is available then it is consumed and the call returns immediately; otherwise the current thread becomes disabled for thread scheduling purposes and lies dormant until one of four things happens:

This method does not report which of these caused the method to return. Callers should re-check the conditions which caused the thread to park in the first place. Callers may also determine, for example, the interrupt status of the thread, or the elapsed time upon return.

Parameters:
nanos - the maximum number of nanoseconds to wait

parkUntil sample code for java.util.concurrent.locks.LockSupport.parkUntil(long) definition code for java.util.concurrent.locks.LockSupport.parkUntil(long)

public static void parkUntil(long deadline)
Disables the current thread for thread scheduling purposes, until the specified deadline, unless the permit is available.

If the permit is available then it is consumed and the call returns immediately; otherwise the current thread becomes disabled for thread scheduling purposes and lies dormant until one of four things happens:

This method does not report which of these caused the method to return. Callers should re-check the conditions which caused the thread to park in the first place. Callers may also determine, for example, the interrupt status of the thread, or the current time upon return.

Parameters:
deadline - the absolute time, in milliseconds from the Epoch, to wait until