9 #ifndef DIAGNOSTIC_CLIENT_LIB_LIB_UTILITY_UTILITY_THREAD_H
10 #define DIAGNOSTIC_CLIENT_LIB_LIB_UTILITY_UTILITY_THREAD_H
35 template<typename Callable, typename... Args>
36 Thread(std::
string const &thread_name, Callable &&callable, Args &&...args) noexcept
37 :
thread_{std::forward<Callable>(callable), std::forward<Args>(args)...} {
39 pthread_setname_np(
thread_.native_handle(), thread_name.c_str());
Thread & operator=(Thread &&other) noexcept=default
Thread(const Thread &other) noexcept=delete
Deleted copy assignment and copy constructor.
Thread() noexcept=default
Default constructor.
Thread(Thread &&other) noexcept=default
Defaulted move assignment and move constructor.
~Thread() noexcept
Destructor.
Thread & operator=(const Thread &other) noexcept=delete
void Join() noexcept
Function to join the running thread.