[#BloombergLP-bslstl-StopToken_RefCountedState] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslstl.adoc[bslstl]::StopToken_RefCountedState :relfileprefix: ../../ :mrdocs: This component‐private struct adds a reference count to the internal `StopState` class. This reference count represents the number of `bsl::stop_source` objects that refer to the stop state (NOT the total number of objects that refer to the stop state). == Synopsis Declared in `<bslstl_stoptoken.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- struct StopToken_RefCountedState : xref:BloombergLP/bslstl/StopState.adoc[StopState] ---- == Description Implementation note: The reference count has been kept outside the `StopState` object in order to enable `StopState` to potentially be reused to implement `in_place_stop_source` (from WG21 proposal P2300R7) without the overhead from the reference count. == Base Classes [cols="1,4"] |=== | Name| Description | `xref:BloombergLP/bslstl/StopState.adoc[StopState]` | Shared stop state that tracks a stop request and registered callbacks. |=== == Member Functions [cols="1,4"] |=== | Name| Description | xref:BloombergLP/bslstl/StopState/deregister.adoc[`deregister`] | If the callback of the specified `node` is currently executing, wait for it to complete. Otherwise, remove `node` from the list of nodes registered to this state. The behavior is undefined if this method is called more than once for a given `node` or if `node` was not previously registered to this state by a call to `enregister` that returned `true`. | xref:BloombergLP/bslstl/StopState/enregister.adoc[`enregister`] | If a stop has already been requested, then invoke the callback of the specified `node` and return `false`. Otherwise, add `node` to the list of nodes registered to this state and return `true`. The behavior is undefined if this method is called more than once for a given `node`. | xref:BloombergLP/bslstl/StopState/requestStop.adoc[`requestStop`] | If this `StopState` object has already had a stop requested, return `false`. Otherwise, atomically mark this `StopState` object as having had a stop requested, then execute all registered callbacks in an unspecified order, and finally return `true`. | xref:BloombergLP/bslstl/StopState/stopRequested.adoc[`stopRequested`] | Return `true` if a stop has been requested on this `StopState` object, and `false` otherwise. |=== == Data Members [cols="1,4"] |=== | Name| Description | xref:BloombergLP/bslstl/StopToken_RefCountedState/d_stopSourceCount.adoc[`d_stopSourceCount`] | The number of `bsl::stop_source` objects that refer to this stop state. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#