Rogue Wave banner
Previous fileTop of DocumentContentsIndexNext file

RWTTryWriteLockGuard<Resource>


RWTTryWriteLockGuard<Resource> RWTLockGuardBase<Resource>

Data Type and Member Function Indexes
(exclusive of constructors and destructors)

Data Types

Member Functions

Package

Synchronization

Header File

#include <rw/sync/RWTTryWriteLockGuard.h> 

Description

RWTTryWriteLockGuard<Resource> is a guard class that tries to acquire write access on its resource upon creation and, if successful, releases it upon destruction. Guard objects work in conjunction with block statements in such a way as to establish an appropriate state upon creation, maintain that state for the duration of the block, and restore the original state upon destruction. For example, a guard may acquire write access on a mutex upon creation and release it when destructed. The class used as the actual template parameter for Resource must be one that provides tryAcquireWrite and release methods (such as some synchronization classes provided by the library).

Example

Public Typedef

typedef Resource     ResourceType;

Public Constructor

RWTTryWriteLockGuard(Resource& resource);

Public Member Function

RWBoolean
tryAcquire(void);

Protected Constructor

RWTTryWriteLockGuard(const 
                    RWTTryWriteLockGuard<Resource>& second);

Protected Member Operator

RWTTryWriteLockGuard<Resource>&
operator=(const RWTTryWriteLockGuard<Resource>& second);

See Also

RWTWriteLockGuard<Resource>, RWTWriteUnlockGuard<Resource>



Previous fileTop of DocumentContentsIndexNext file

©Copyright 2000, Rogue Wave Software, Inc.
Contact Rogue Wave about documentation or support issues.