![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This abstract class defines the operations for an ITC message. More...
This abstract class defines the operations for an ITC message.
#include <Message.h>
Public Member Functions | |
virtual void | process () noexcept=0 |
This abstract operation is invoked by the mailbox owner to cause the message to be processed after it has been retrieved from the mailbox. | |
virtual | ~Message () |
Virtual destructor. | |
![]() | |
bool | insert_ (void *newContainerPtr) |
Helper method to trap when inserting an item in multiple containers. | |
bool | isInContainer_ (const void *containerPtr) const noexcept |
Returns 'true' if the instance is in the specified container. | |
Additional Inherited Members | |
![]() | |
static void | remove_ (Item *itemPtr) noexcept |
Helper method to do the proper 'clean-up' for the multiple-containers-error-trap when removing an item from a container. | |
![]() | |
void * | m_prevPtr_ |
The previous link field. | |
![]() | |
void * | m_nextPtr_ |
The link field. | |
void * | m_inListPtr_ |
Debug field. | |
![]() | |
ExtendedItem () | |
Constructor. | |
ExtendedItem (const char *ignoreThisParameter_usedToCreateAUniqueConstructor) | |
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated. | |
![]() | |
Item () | |
Constructor. | |
Item (const char *) | |
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated. | |
|
inlinevirtual |
Virtual destructor.
|
pure virtualnoexcept |
This abstract operation is invoked by the mailbox owner to cause the message to be processed after it has been retrieved from the mailbox.
Implemented in Cpl::Itc::RequestMessage< SERVER, PAYLOAD >, and Cpl::Itc::ResponseMessage< CLIENT, SERVER, PAYLOAD >.