Rogue Wave banner
Previous fileTop of DocumentContentsIndex pageNext file
Threads Module Reference Guide
Rogue Wave web site:  Home Page  |  Main Documentation Page

RWTWriteGuardBase<Resource>

Module:  Threads   Package:  Synchronization


Base Class

Local Index

Members

Header File

#include <rw/sync/RWTWriteGuardBase.h> 

Description

RWTWriteGuardBase<Resource> is intended as a base class for guard classes that need to support write access to a given section of code. 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 a mutex for writing upon creation and release it when destructed. The class used as the actual template parameter for Resource must be one that provides acquireWrite and release methods (such as the synchronization classes provided in this module).

Public Typedef

typedef Resource     ResourceType;

Public Destructor

~RWTWriteGuardBase();

Public Member Functions

void
acquire();
bool
isAcquired() const;
void
release();

Protected Constructors

RWTWriteGuardBase(Resource& resource);

Protected Member Function

Resource&
resource() const;

Private Constructor

RWTWriteGuardBase(const RWTWriteGuardBase<Resource>& second);

Private Member Operators

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

See Also

RWTWriteLockGuardBase<Resource>, RWTWriteLockGuard<Resource>, RWTTryWriteLockGuard<Resource>, RWTWriteUnlockGuard<Resource>



Previous fileTop of DocumentContentsIndex pageNext file

© Copyright Rogue Wave Software, Inc. All Rights Reserved.
Rogue Wave and SourcePro are registered trademarks of Rogue Wave Software, Inc. in the United States and other countries. All other trademarks are the property of their respective owners.
Contact Rogue Wave about documentation or support issues.