![]() |
Imt.Base C++ API V4.1.1.0
|
A Mailbox represents an abstract way for runtime to send/receive events with fixed size messages from underlaying RTOS. More...
#include <Imt.Base.Dff.Runtime.RTOS/inc/Imt.Base.Dff.Runtime.RTOS/Mailbox.h>
Public Member Functions | |
Mailbox (imt::base::dff::runtime::rtos::MailboxImplIfc &impl) | |
Constructor. | |
void | initialize () |
Init the mailbox. | |
void | deinitialize () |
Deletes the mailbox. | |
void | clear () |
Removes all messages from the mailbox. | |
MessageType | getMail () |
Gets the next message from the mailbox. | |
bool | getMailConditional (MessageType *const pMail) |
Gets the next message from the mailbox. | |
void | putMail (MessageType const message) |
Adds a message to the mailbox. | |
bool | putMailConditional (MessageType const message) |
Adds a message to the mailbox. | |
void | waitMail () |
This method returns imediately when the mailbox contains at least one message. | |
A Mailbox represents an abstract way for runtime to send/receive events with fixed size messages from underlaying RTOS.
imt::base::dff::runtime::rtos::Mailbox< MessageType, MailboxSize >::Mailbox | ( | imt::base::dff::runtime::rtos::MailboxImplIfc & | impl | ) |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Adds a message to the mailbox.
This can be used from any task or interrupt handler. If the mailbox is full the mthod returns false but task will not be suspended. The data is copied.
message | The message to put into the mailbox. |
|
inline |
This method returns imediately when the mailbox contains at least one message.
If the mailbox is empty this method will suspend the calling task until a message is avaliable. This will not remove the message from the mailbox.