java.util.concurrent.locks
Class ReentrantReadWriteLock.WriteLock

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock
All Implemented Interfaces:
Serializable sample code for java.io.Serializable definition code for java.io.Serializable , Lock sample code for java.util.concurrent.locks.Lock definition code for java.util.concurrent.locks.Lock
Enclosing class:
ReentrantReadWriteLock sample code for java.util.concurrent.locks.ReentrantReadWriteLock definition code for java.util.concurrent.locks.ReentrantReadWriteLock

public static class ReentrantReadWriteLock.WriteLock
extends Object sample code for java.lang.Object definition code for java.lang.Object
implements Lock sample code for java.util.concurrent.locks.Lock definition code for java.util.concurrent.locks.Lock , Serializable sample code for java.io.Serializable definition code for java.io.Serializable

The lock returned by method ReentrantReadWriteLock.writeLock() sample code for java.util.concurrent.locks.ReentrantReadWriteLock.writeLock() definition code for java.util.concurrent.locks.ReentrantReadWriteLock.writeLock() .

See Also:
Serialized Form

Constructor Summary
protected ReentrantReadWriteLock.WriteLock sample code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.ReentrantReadWriteLock.WriteLock(java.util.concurrent.locks.ReentrantReadWriteLock) definition code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.ReentrantReadWriteLock.WriteLock(java.util.concurrent.locks.ReentrantReadWriteLock) (ReentrantReadWriteLock sample code for java.util.concurrent.locks.ReentrantReadWriteLock definition code for java.util.concurrent.locks.ReentrantReadWriteLock  lock)
          Constructor for use by subclasses
 
Method Summary
 void lock sample code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.lock() definition code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.lock() ()
          Acquire the write lock.
 void lockInterruptibly sample code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.lockInterruptibly() definition code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.lockInterruptibly() ()
          Acquires the write lock unless the current thread is interrupted sample code for java.lang.Thread.interrupt() definition code for java.lang.Thread.interrupt() .
 Condition sample code for java.util.concurrent.locks.Condition definition code for java.util.concurrent.locks.Condition newCondition sample code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.newCondition() definition code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.newCondition() ()
          Returns a Condition sample code for java.util.concurrent.locks.Condition definition code for java.util.concurrent.locks.Condition instance for use with this Lock sample code for java.util.concurrent.locks.Lock definition code for java.util.concurrent.locks.Lock instance.
 String sample code for java.lang.String definition code for java.lang.String toString sample code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.toString() definition code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.toString() ()
          Returns a string identifying this lock, as well as its lock state.
 boolean tryLock sample code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.tryLock() definition code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.tryLock() ()
          Acquires the write lock only if it is not held by another thread at the time of invocation.
 boolean tryLock sample code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.tryLock(long, java.util.concurrent.TimeUnit) definition code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.tryLock(long, java.util.concurrent.TimeUnit) (long timeout, TimeUnit sample code for java.util.concurrent.TimeUnit definition code for java.util.concurrent.TimeUnit  unit)
          Acquires the write lock if it is not held by another thread within the given waiting time and the current thread has not been interrupted sample code for java.lang.Thread.interrupt() definition code for java.lang.Thread.interrupt() .
 void unlock sample code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.unlock() definition code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.unlock() ()
          Attempts to release this lock.
 
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() , 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)
 

Constructor Detail

ReentrantReadWriteLock.WriteLock sample code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock(java.util.concurrent.locks.ReentrantReadWriteLock) definition code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock(java.util.concurrent.locks.ReentrantReadWriteLock)

protected ReentrantReadWriteLock.WriteLock(ReentrantReadWriteLock sample code for java.util.concurrent.locks.ReentrantReadWriteLock definition code for java.util.concurrent.locks.ReentrantReadWriteLock  lock)
Constructor for use by subclasses

Parameters:
lock - the outer lock object
Throws:
NullPointerException sample code for java.lang.NullPointerException definition code for java.lang.NullPointerException - if lock null
Method Detail

lock sample code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.lock() definition code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.lock()

public void lock()
Acquire the write lock.

Acquires the write lock if neither the read nor write lock are held by another thread and returns immediately, setting the write lock hold count to one.

If the current thread already holds the write lock then the hold count is incremented by one and the method returns immediately.

If the lock is held by another thread then the current thread becomes disabled for thread scheduling purposes and lies dormant until the write lock has been acquired, at which time the write lock hold count is set to one.

Specified by:
lock sample code for java.util.concurrent.locks.Lock.lock() definition code for java.util.concurrent.locks.Lock.lock() in interface Lock sample code for java.util.concurrent.locks.Lock definition code for java.util.concurrent.locks.Lock

lockInterruptibly sample code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.lockInterruptibly() definition code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.lockInterruptibly()

public void lockInterruptibly()
                       throws InterruptedException sample code for java.lang.InterruptedException definition code for java.lang.InterruptedException 
Acquires the write lock unless the current thread is interrupted sample code for java.lang.Thread.interrupt() definition code for java.lang.Thread.interrupt() .

Acquires the write lock if neither the read nor write lock are held by another thread and returns immediately, setting the write lock hold count to one.

If the current thread already holds this lock then the hold count is incremented by one and the method returns immediately.

If the lock is held by another thread then the current thread becomes disabled for thread scheduling purposes and lies dormant until one of two things happens:

If the write lock is acquired by the current thread then the lock hold count is set to one.

If the current thread:

then InterruptedException sample code for java.lang.InterruptedException definition code for java.lang.InterruptedException is thrown and the current thread's interrupted status is cleared.

In this implementation, as this method is an explicit interruption point, preference is given to responding to the interrupt over normal or reentrant acquisition of the lock.

Specified by:
lockInterruptibly sample code for java.util.concurrent.locks.Lock.lockInterruptibly() definition code for java.util.concurrent.locks.Lock.lockInterruptibly() in interface Lock sample code for java.util.concurrent.locks.Lock definition code for java.util.concurrent.locks.Lock
Throws:
InterruptedException sample code for java.lang.InterruptedException definition code for java.lang.InterruptedException - if the current thread is interrupted
See Also:
Thread.interrupt() sample code for java.lang.Thread.interrupt() definition code for java.lang.Thread.interrupt()

tryLock sample code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.tryLock() definition code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.tryLock()

public boolean tryLock()
Acquires the write lock only if it is not held by another thread at the time of invocation.

Acquires the write lock if neither the read nor write lock are held by another thread and returns immediately with the value true, setting the write lock hold count to one. Even when this lock has been set to use a fair ordering policy, a call to tryLock() will immediately acquire the lock if it is available, whether or not other threads are currently waiting for the write lock. This "barging" behavior can be useful in certain circumstances, even though it breaks fairness. If you want to honor the fairness setting for this lock, then use tryLock(0, TimeUnit.SECONDS) sample code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.tryLock(long, java.util.concurrent.TimeUnit) definition code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.tryLock(long, java.util.concurrent.TimeUnit) which is almost equivalent (it also detects interruption).

If the current thread already holds this lock then the hold count is incremented by one and the method returns true.

If the lock is held by another thread then this method will return immediately with the value false.

Specified by:
tryLock sample code for java.util.concurrent.locks.Lock.tryLock() definition code for java.util.concurrent.locks.Lock.tryLock() in interface Lock sample code for java.util.concurrent.locks.Lock definition code for java.util.concurrent.locks.Lock
Returns:
true if the lock was free and was acquired by the current thread, or the write lock was already held by the current thread; and false otherwise.

tryLock sample code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.tryLock(long, java.util.concurrent.TimeUnit) definition code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.tryLock(long, java.util.concurrent.TimeUnit)

public boolean tryLock(long timeout,
                       TimeUnit sample code for java.util.concurrent.TimeUnit definition code for java.util.concurrent.TimeUnit  unit)
                throws InterruptedException sample code for java.lang.InterruptedException definition code for java.lang.InterruptedException 
Acquires the write lock if it is not held by another thread within the given waiting time and the current thread has not been interrupted sample code for java.lang.Thread.interrupt() definition code for java.lang.Thread.interrupt() .

Acquires the write lock if neither the read nor write lock are held by another thread and returns immediately with the value true, setting the write lock hold count to one. If this lock has been set to use a fair ordering policy then an available lock will not be acquired if any other threads are waiting for the write lock. This is in contrast to the tryLock() sample code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.tryLock() definition code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.tryLock() method. If you want a timed tryLock that does permit barging on a fair lock then combine the timed and un-timed forms together:

if (lock.tryLock() || lock.tryLock(timeout, unit) ) { ... }
 

If the current thread already holds this lock then the hold count is incremented by one and the method returns true.

If the lock is held by another thread then the current thread becomes disabled for thread scheduling purposes and lies dormant until one of three things happens:

If the write lock is acquired then the value true is returned and the write lock hold count is set to one.

If the current thread:

then InterruptedException sample code for java.lang.InterruptedException definition code for java.lang.InterruptedException is thrown and the current thread's interrupted status is cleared.

If the specified waiting time elapses then the value false is returned. If the time is less than or equal to zero, the method will not wait at all.

In this implementation, as this method is an explicit interruption point, preference is given to responding to the interrupt over normal or reentrant acquisition of the lock, and over reporting the elapse of the waiting time.

Specified by:
tryLock sample code for java.util.concurrent.locks.Lock.tryLock(long, java.util.concurrent.TimeUnit) definition code for java.util.concurrent.locks.Lock.tryLock(long, java.util.concurrent.TimeUnit) in interface Lock sample code for java.util.concurrent.locks.Lock definition code for java.util.concurrent.locks.Lock
Parameters:
timeout - the time to wait for the write lock
unit - the time unit of the timeout argument
Returns:
true if the lock was free and was acquired by the current thread, or the write lock was already held by the current thread; and false if the waiting time elapsed before the lock could be acquired.
Throws:
InterruptedException sample code for java.lang.InterruptedException definition code for java.lang.InterruptedException - if the current thread is interrupted
NullPointerException sample code for java.lang.NullPointerException definition code for java.lang.NullPointerException - if unit is null
See Also:
Thread.interrupt() sample code for java.lang.Thread.interrupt() definition code for java.lang.Thread.interrupt()

unlock sample code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.unlock() definition code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.unlock()

public void unlock()
Attempts to release this lock.

If the current thread is the holder of this lock then the hold count is decremented. If the hold count is now zero then the lock is released. If the current thread is not the holder of this lock then IllegalMonitorStateException sample code for java.lang.IllegalMonitorStateException definition code for java.lang.IllegalMonitorStateException is thrown.

Specified by:
unlock sample code for java.util.concurrent.locks.Lock.unlock() definition code for java.util.concurrent.locks.Lock.unlock() in interface Lock sample code for java.util.concurrent.locks.Lock definition code for java.util.concurrent.locks.Lock
Throws:
IllegalMonitorStateException sample code for java.lang.IllegalMonitorStateException definition code for java.lang.IllegalMonitorStateException - if the current thread does not hold this lock.

newCondition sample code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.newCondition() definition code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.newCondition()

public Condition sample code for java.util.concurrent.locks.Condition definition code for java.util.concurrent.locks.Condition  newCondition()
Returns a Condition sample code for java.util.concurrent.locks.Condition definition code for java.util.concurrent.locks.Condition instance for use with this Lock sample code for java.util.concurrent.locks.Lock definition code for java.util.concurrent.locks.Lock instance.

The returned Condition sample code for java.util.concurrent.locks.Condition definition code for java.util.concurrent.locks.Condition instance supports the same usages as do the Object sample code for java.lang.Object definition code for java.lang.Object monitor methods (wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , and notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() ) when used with the built-in monitor lock.

Specified by:
newCondition sample code for java.util.concurrent.locks.Lock.newCondition() definition code for java.util.concurrent.locks.Lock.newCondition() in interface Lock sample code for java.util.concurrent.locks.Lock definition code for java.util.concurrent.locks.Lock
Returns:
the Condition object

toString sample code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.toString() definition code for java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock.toString()

public String sample code for java.lang.String definition code for java.lang.String  toString()
Returns a string identifying this lock, as well as its lock state. The state, in brackets includes either the String "Unlocked" or the String "Locked by" followed by the Thread.getName() sample code for java.lang.Thread.getName() definition code for java.lang.Thread.getName() of the owning thread.

Overrides:
toString sample code for java.lang.Object.toString() definition code for java.lang.Object.toString() in class Object sample code for java.lang.Object definition code for java.lang.Object
Returns:
a string identifying this lock, as well as its lock state.