SourcePro® API Reference Guide

 
Loading...
Searching...
No Matches
RWAtomicCounter Class Reference

Maintains a reference count safely in a multithreaded environment. More...

#include <rw/pointer/RWAtomicCounter.h>

Public Member Functions

 RWAtomicCounter (const RWAtomicCounter &)
 
 RWAtomicCounter (RWStaticCtor)
 
 RWAtomicCounter (unsigned n=0)
 
unsigned addReference (void)
 
RWAtomicCounteroperator= (const RWAtomicCounter &)
 
unsigned references (void) const
 
unsigned removeReference (void)
 

Detailed Description

RWAtomicCounter maintains a reference count and can safely be used in a multithreaded environment.

Example
#include <rw/pointer/RWAtomicCounter.h>
#include <rw/pointer/RWTCountingPointer.h>
int main() {
return 0;
}
Defines a reference-counted pointer that provides reference counting semantics for types that do not ...
Definition RWTCountingPointer.h:64

Constructor & Destructor Documentation

◆ RWAtomicCounter() [1/3]

RWAtomicCounter::RWAtomicCounter ( unsigned n = 0)
inline

Constructs a default instance that initializes the reference count. Throws no exceptions.

◆ RWAtomicCounter() [2/3]

RWAtomicCounter::RWAtomicCounter ( RWStaticCtor )
inline

Constructs a static instance that does not initialize the reference count. Throws no exceptions.

◆ RWAtomicCounter() [3/3]

RWAtomicCounter::RWAtomicCounter ( const RWAtomicCounter & )
inline

Default-initializes the internal count to zero.

Member Function Documentation

◆ addReference()

unsigned RWAtomicCounter::addReference ( void )
inline

Increments the reference count and then returns the previous value minus one.

◆ operator=()

RWAtomicCounter & RWAtomicCounter::operator= ( const RWAtomicCounter & )
inline

Copy assignment operator that does nothing, allowing derived classes to do assignments. Returns *this.

◆ references()

unsigned RWAtomicCounter::references ( void ) const
inline

Queries the current reference count. Throws no exceptions.

◆ removeReference()

unsigned RWAtomicCounter::removeReference ( void )
inline

Decrements the reference count and then returns the previous value minus one.

Copyright © 2024 Rogue Wave Software, Inc., a Perforce company. All Rights Reserved.