Diag-Client-Lib
Public Member Functions | Private Attributes | List of all members
utility::thread::Thread Class Referencefinal

#include <thread.h>

Public Member Functions

 Thread () noexcept=default
 Default constructor. More...
 
template<typename Callable , typename... Args>
 Thread (std::string const &thread_name, Callable &&callable, Args &&...args) noexcept
 Constructor to start the thread with passed callable and arguments. More...
 
 Thread (const Thread &other) noexcept=delete
 Deleted copy assignment and copy constructor. More...
 
Threadoperator= (const Thread &other) noexcept=delete
 
 Thread (Thread &&other) noexcept=default
 Defaulted move assignment and move constructor. More...
 
Threadoperator= (Thread &&other) noexcept=default
 
 ~Thread () noexcept
 Destructor. More...
 
void Join () noexcept
 Function to join the running thread. More...
 

Private Attributes

std::thread thread_ {}
 

Detailed Description

Definition at line 20 of file thread.h.

Constructor & Destructor Documentation

◆ Thread() [1/4]

utility::thread::Thread::Thread ( )
defaultnoexcept

Default constructor.

◆ Thread() [2/4]

template<typename Callable , typename... Args>
utility::thread::Thread::Thread ( std::string const &  thread_name,
Callable &&  callable,
Args &&...  args 
)
inlinenoexcept

Constructor to start the thread with passed callable and arguments.

Template Parameters
CallableThe callable that is invoked by created thread
ArgsThe arguments passed to the callable

Definition at line 36 of file thread.h.

37  : thread_{std::forward<Callable>(callable), std::forward<Args>(args)...} {
38  // Set thread name
39  pthread_setname_np(thread_.native_handle(), thread_name.c_str());
40  }
std::thread thread_
Definition: thread.h:67

◆ Thread() [3/4]

utility::thread::Thread::Thread ( const Thread other)
deletenoexcept

Deleted copy assignment and copy constructor.

◆ Thread() [4/4]

utility::thread::Thread::Thread ( Thread &&  other)
defaultnoexcept

Defaulted move assignment and move constructor.

◆ ~Thread()

utility::thread::Thread::~Thread ( )
inlinenoexcept

Destructor.

Definition at line 57 of file thread.h.

57 { Join(); }
void Join() noexcept
Function to join the running thread.
Definition: thread.h:62

References Join().

Here is the call graph for this function:

Member Function Documentation

◆ Join()

void utility::thread::Thread::Join ( )
inlinenoexcept

Function to join the running thread.

Definition at line 62 of file thread.h.

62  {
63  if (thread_.joinable()) { thread_.join(); }
64  }

References thread_.

Referenced by diag::client::DiagClient::DiagClientImpl::DeInitialize(), boost_support::socket::IoContext::~IoContext(), and ~Thread().

Here is the caller graph for this function:

◆ operator=() [1/2]

Thread& utility::thread::Thread::operator= ( const Thread other)
deletenoexcept

◆ operator=() [2/2]

Thread& utility::thread::Thread::operator= ( Thread &&  other)
defaultnoexcept

Member Data Documentation

◆ thread_

std::thread utility::thread::Thread::thread_ {}
private

Definition at line 67 of file thread.h.

Referenced by Join().


The documentation for this class was generated from the following file: