A class that provides thread-safe access to an object, including construction and destruction.
More...
#include <threads_shared.h>
template<class data_t, class synchronization_primitive_t = std::mutex>
class qx::threads_shared< data_t, synchronization_primitive_t >
A class that provides thread-safe access to an object, including construction and destruction.
- Template Parameters
-
data_t | - data type |
synchronization_primitive_t | - synchronization primitive type |
- Author
- Khrapov
- Date
- 20.08.2021
Definition at line 81 of file threads_shared.h.
◆ threads_shared()
template<class data_t , class synchronization_primitive_t >
template<class... args_t>
threads_shared object constructor
- Template Parameters
-
args_t | - template parameter pack type |
- Parameters
-
args | - arguments to constructing Data object |
Definition at line 115 of file threads_shared.inl.
◆ lock()
template<class data_t , class synchronization_primitive_t >
Wait for other threads to finish work with data object and retrieve proxy object.
- Return values
-
- | proxy that provides access to an object stored in threads_shared and provides raii for synchronization primitives |
Definition at line 135 of file threads_shared.inl.
◆ try_lock()
template<class data_t , class synchronization_primitive_t >
Try to lock synchronization primitive and get proxy.
- Return values
-
- | proxy that provides access to an object stored in threads_shared or std::nullopt |
Definition at line 143 of file threads_shared.inl.
The documentation for this class was generated from the following files: