SourcePro® 2024.1 |
SourcePro® API Reference Guide |
A base class for guard classes that acquire write access to a resource upon creation and release it upon destruction. More...
#include <rw/sync/RWTWriteLockGuardBase.h>
Public Member Functions | |
~RWTWriteLockGuardBase (void) | |
Public Member Functions inherited from RWTWriteGuardBase< Resource > | |
~RWTWriteGuardBase (void) | |
void | acquire (void) |
bool | isAcquired (void) const |
void | release (void) |
Protected Member Functions | |
RWTWriteLockGuardBase (Resource &resource) | |
RWTWriteLockGuardBase (Resource &resource, bool acquired) | |
Protected Member Functions inherited from RWTWriteGuardBase< Resource > | |
RWTWriteGuardBase (Resource &resource) | |
RWTWriteGuardBase (Resource &resource, bool acquired) | |
Resource & | resource (void) const |
Private Member Functions | |
RWTWriteLockGuardBase (const RWTWriteLockGuardBase< Resource > &second) | |
RWTWriteLockGuardBase< Resource > & | operator= (const RWTWriteLockGuardBase< Resource > &second) |
RWTWriteLockGuardBase is a base class for guard classes that acquire write access on a resource upon creation and release it upon destruction. Guard objects work in conjunction with block statements 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 when created and release it when destructed.
The class used as the actual template parameter for Resource
must provide acquireWrite
() and release
() methods, such as the synchronization classes in this module.
|
inline |
Releases the resource if it has been acquired.
|
inlineprotected |
Constructs a guard instance with the given resource. Note that this constructor does not attempt to acquire the resource. That is the responsibility of the derived class.
|
inlineprotected |
Constructs a guard instance with the given resource. If acquired is true
, the resource is assumed to be owned by the caller. Note that this constructor does not attempt to acquire the resource. That is the responsibility of the derived class.
|
private |
Copy construction prohibited.
|
private |
Assignment prohibited.
Copyright © 2024 Rogue Wave Software, Inc., a Perforce company. All Rights Reserved. |