ReentrantReadWriteLock.ReentrantWriteLock.LockInterruptibly 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.
Acquires the write lock unless the current thread is Thread#interrupt interrupted.
[Android.Runtime.Register("lockInterruptibly", "()V", "GetLockInterruptiblyHandler")]
public virtual void LockInterruptibly ();
[<Android.Runtime.Register("lockInterruptibly", "()V", "GetLockInterruptiblyHandler")>]
abstract member LockInterruptibly : unit -> unit
override this.LockInterruptibly : unit -> unit
Implements
- Attributes
Exceptions
if the current thread is interrupted
Remarks
Acquires the write lock unless the current thread is Thread#interrupt interrupted.
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:
<ul>
<li>The write lock is acquired by the current thread; or
<li>Some other thread Thread#interrupt interrupts the current thread.
</ul>
If the write lock is acquired by the current thread then the lock hold count is set to one.
If the current thread:
<ul>
<li>has its interrupted status set on entry to this method; or
<li>is Thread#interrupt interrupted while acquiring the write lock,
</ul>
then 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.
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.