Provides a thread instance toghether with the infrastructure required to stop the thread as well as some synchronization primitives that can be used to synchronize access to shared data.
More...
|
| Thread (std::string const &threadName, ThreadSchedulingParams schedulingParams, std::function< void()> threadFunction) noexcept |
| Constructor.
|
|
| ~Thread () |
| Destructor.
|
|
void | start () |
| Starts execution of the thread.
|
|
void | stop () noexcept |
| Stops execution of the thread.
|
|
bool | isStopRequested () const noexcept |
| Gets whether a stop of the thread is requested.
|
|
constexpr std::mutex & | getMutex () noexcept |
| Gets the mutex associated with this thread.
|
|
constexpr std::condition_variable & | getConditionVariable () noexcept |
| Gets the condition variable associated with this thread.
|
|
constexpr std::string const & | getName () const noexcept |
| Gets the name of this thread.
|
|
void | waitFor (std::chrono::milliseconds const waitTimeMs) |
| Lets the current thread wait for the condition variable beeing set or the waitTimeMs to elapse.
|
|
| Thread (Thread const &source)=delete |
|
| Thread (Thread &&source) noexcept=delete |
|
Thread & | operator= (Thread const &source)=delete |
|
Thread & | operator= (Thread &&source) noexcept=delete |
|
Provides a thread instance toghether with the infrastructure required to stop the thread as well as some synchronization primitives that can be used to synchronize access to shared data.
The synchronization primitives - especially the std::condition_variable - is provided by this thread to support waiting for conditions that take the request to stop the whole thread into account. Unfortunately the the posix like conditions don't support waiting for multiple conditions like the windows WaitFor.. functions. Therefore, we have to provide one condition that is set when a stop is requested (internally by this implementaiton). Users of the thread will also set the very same condition when e.g. new data is available for processing, causing the thread to wakeup and continue execution.
Definition at line 32 of file Thread.h.