![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This call defines the callback interface that is used when the application is shutdown. More...
This call defines the callback interface that is used when the application is shutdown.
#include <Shutdown.h>
Public Member Functions | |
virtual int | notify (int exit_code)=0 |
This method is called when the application is shutting down. | |
virtual | ~Handler () |
Ensure the destructor is virtual. | |
![]() | |
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_nextPtr_ |
The link field. | |
void * | m_inListPtr_ |
Debug field. | |
![]() | |
Item () | |
Constructor. | |
Item (const char *) | |
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated. | |
|
inlinevirtual |
Ensure the destructor is virtual.
|
pure virtual |
This method is called when the application is shutting down.
The method is passed 'exit_code' which is the exit code provided by the application when called the Shutdown interface. The return value from the handler will be used as the application shutdown exit code. To leave the exit code unaltered - return the passed in 'exit_code'.
Notes:
o The final exit code is the serialized 'sum' of the all of the shutdown handlers. o The notify() method is called in the thread context that initiated the shutdown.