SourcePro® 2024.1 |
SourcePro® API Reference Guide |
A base class for guard classes that support write access to a given section of code. More...
#include <rw/sync/RWTWriteGuardBase.h>
Public Member Functions | |
~RWTWriteGuardBase (void) | |
void | acquire (void) |
bool | isAcquired (void) const |
void | release (void) |
Protected Member Functions | |
RWTWriteGuardBase (Resource &resource) | |
RWTWriteGuardBase (Resource &resource, bool acquired) | |
Resource & | resource (void) const |
Private Member Functions | |
RWTWriteGuardBase (const RWTWriteGuardBase< Resource > &second) | |
RWTWriteGuardBase< Resource > & | operator= (const RWTWriteGuardBase< Resource > &second) |
RWTWriteGuardBase is 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 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 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.
RWTWriteGuardBase< Resource >::~RWTWriteGuardBase | ( | void | ) |
Destructor.
|
inlineprotected |
Constructs an instance with the given resource.
|
inlineprotected |
Constructs an instance with the given resource. If acquired is true
, the resource is assumed to be owned by the caller.
|
private |
Copy construction prohibited.
|
inline |
Acquires write access on the resource held by the guard unless it is already acquired. Use this function instead of directly manipulating the resource so that the guard automatically releases or acquires it, as appropriate.
|
inline |
Returns true if the resource is currently acquired.
|
private |
Assignment prohibited.
|
inline |
Releases the resource held by the guard if it has been acquired. Use this function instead of directly manipulating the resource so that the guard automatically releases or acquires it, as appropriate.
|
inlineprotected |
Returns a reference to the resource currently held by the guard.
Copyright © 2024 Rogue Wave Software, Inc., a Perforce company. All Rights Reserved. |