SynchronizedDictionaryAcquireWriteLock Method (Int32) | 
.NET API Reference for Oracle® Coherence Community Edition 
 (14.1.1.0)
E55634-01
 
            Acquire a write lock.
            
 
    Namespace: 
   Tangosol.Util.Collections
    Assembly:
   Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntaxpublic bool AcquireWriteLock(
	int timeout
)
Parameters
- timeout
 - Type: SystemInt32
            Timeout in milliseconds.
             
Return Value
Type: 
Booleantrue if a lock was acquired within the specified time,
            
false otherwise.
            
Remarks
            This method will attempt to acquire a write lock for up to
            
timeout milliseconds, and will return a boolean 
            value specifying whether or not the lock was acquired successfully.
            
            Only a single thread can hold the write lock at any given time, 
            and no other threads will be able to acquire either a read lock
            or a write lock until the write lock is released.
            
            This method should always be used in combination with a
            
ReleaseWriteLock method in the following manner:
            
if (dict.AcquireWriteLock(timeout))
{
    try
    {
        
    }
    finally
    {
        dict.ReleaseWriteLock();
    }
}
            This will ensure that the dictionary is not accessed unless the 
            lock was acquired successfully, and that the lock is released 
            properly even if an exception is thrown by the code within the 
            
try block. 
            
            It is entirely up to you how to handle the case when the 
            
AcquireWriteLock method returns 
false. For example,
            you can ignore the fact, throw an exception, or retry the 
            operation by placing the code above within a loop.
            
See Also