16    ThreadMsg(
int id, std::shared_ptr<dmq::DelegateMsg> data) :
 
 
   22    int GetId()
 const { 
return m_id; } 
 
   24    std::shared_ptr<dmq::DelegateMsg> 
GetData()
 const { 
return m_data; }
 
   32    std::shared_ptr<dmq::DelegateMsg> m_data;
 
A class to hold a platform-specific thread messsage that will be passed through the OS message queue.
Definition freertos/ThreadMsg.h:7
ThreadMsg(int id, std::shared_ptr< dmq::DelegateMsg > data)
Definition stdlib/ThreadMsg.h:16
dmq::Priority GetPriority() const
Definition stdlib/ThreadMsg.h:26
int GetId() const
Definition stdlib/ThreadMsg.h:22
std::shared_ptr< dmq::DelegateMsg > GetData() const
Definition stdlib/ThreadMsg.h:24
Priority
Definition DelegateMsg.h:21