![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This template class represents a service request message to a particular server. More...
This template class represents a service request message to a particular server.
The SERVER argument of the template is the abstract interface of the server which services this message. This is the interface that the message uses to invoke the message operation. By definition, the SERVER must have a member function named "request" that returns nothing (void) and has a signature whose argument is a reference to the message defined by this template.
#include <RequestMessage.h>
Public Member Functions | |
RequestMessage (SERVER &srv, PAYLOAD &payload, ReturnHandler &returnHandler) | |
Constructor. | |
RequestMessage (SAP< SERVER > &sapsrv, PAYLOAD &payload, ReturnHandler &returnHandler) | |
Constructor. | |
virtual | ~RequestMessage () |
Destructor. | |
void | process () noexcept |
See Cpl::Itc::Message. | |
PAYLOAD & | getPayload () |
Returns the payload associated with this request. | |
![]() | |
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. | |
Cpl::Itc::RequestMessage< SERVER, PAYLOAD >::RequestMessage | ( | SERVER & | srv, |
PAYLOAD & | payload, | ||
ReturnHandler & | returnHandler | ||
) |
Constructor.
Cpl::Itc::RequestMessage< SERVER, PAYLOAD >::RequestMessage | ( | SAP< SERVER > & | sapsrv, |
PAYLOAD & | payload, | ||
ReturnHandler & | returnHandler | ||
) |
Constructor.
|
virtual |
Destructor.
PAYLOAD & Cpl::Itc::RequestMessage< SERVER, PAYLOAD >::getPayload | ( | ) |
Returns the payload associated with this request.
|
virtualnoexcept |
See Cpl::Itc::Message.
Implements Cpl::Itc::Message.