![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This class defines a start-up handler/hook that allows a Colony.Core sub-system to register to be called when the Api::initialize() method is called. More...
This class defines a start-up handler/hook that allows a Colony.Core sub-system to register to be called when the Api::initialize() method is called.
The intended usage of this interface is that a sub-system creates a sub-class of this class and then creates a static instance of its sub-class. During the init process, the instance's 'notifyInit' method will be called.
Note: This class/interface SHOULD ONLY be used by Colony.Core interfaces - the application should NEVER register a startup hook!
#include <PrivateStartup_.h>
Public Types | |
enum | InitLevel_T { eTEST_INFRA =0 , eSYSTEM , eMIDDLE_WARE , eAPPLICATION } |
This enum defines 'init_levels'. More... | |
Public Member Functions | |
virtual void | notify (InitLevel_T init_level)=0 |
Initialized last. | |
virtual | ~StartupHook_ () |
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. | |
Static Public Member Functions | |
static void | registerHook (StartupHook_ &callbackInstance, InitLevel_T initOrder) |
This is used to register instance of this class. | |
static void | notifyStartupClients (void) |
This method is intended to be USED ONLY by the Cpl::System::Api::init() method to trigger all of the registered init callbacks. | |
![]() | |
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. | |
Protected Member Functions | |
StartupHook_ (InitLevel_T myInitLevel) | |
Base Class constructor -->performs the callback/init-level registration. | |
![]() | |
Item () | |
Constructor. | |
Item (const char *) | |
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated. | |
Additional Inherited Members | |
![]() | |
void * | m_nextPtr_ |
The link field. | |
void * | m_inListPtr_ |
Debug field. | |
This enum defines 'init_levels'.
The init levels are processed in order (lowest value to highest), i.e. callbacks for lowest numbered init level are called first and the callback for highest numbered init level are called last. Within a init level there is no guaranteed order to the callbacks.
Enumerator | |
---|---|
eSYSTEM | Initialized first. |
|
protected |
Base Class constructor -->performs the callback/init-level registration.
|
inlinevirtual |
Ensure the destructor is virtual.
|
pure virtual |
Initialized last.
This method is called as part of the Colony.Core initialize() process. The 'init_level' informs the client what initialize level context the notifyInit() method is being called.
|
static |
This method is intended to be USED ONLY by the Cpl::System::Api::init() method to trigger all of the registered init callbacks.
|
static |
This is used to register instance of this class.
This method is NOT implemented by the 'client sub-system' - it is a singleton that is implemented Cpl::System::Startup classes.
NOTE: This is the ONE Colony.Core method that can be called BEFORE Cpl::System::Api::initialize() is called.