![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This abstract class defines the interface for a Shared Event Handler. More...
This abstract class defines the interface for a Shared Event Handler.
A Shared Event Handler is used to have function table instead of a hard coded switch() statement for handling/processing event flags notification.
#include <SharedEventHandler.h>
Classes | |
struct | EventCallback_T |
Define a callback entry (i.e. More... | |
Public Types | |
typedef void(* | EventCallbackFunc_T) (void *context) |
Definition of event flag callback functions. | |
Public Member Functions | |
virtual void | processEventFlag (uint8_t eventNumber) noexcept=0 |
This method 'dispatches' the processing associated with the specified Event based the list/array of callback functions. | |
virtual | ~SharedEventHandlerApi () |
Virtual destructor. | |
struct Cpl::System::SharedEventHandlerApi::EventCallback_T |
Define a callback entry (i.e.
provide a 'context' pointer for the callback
Class Members | ||
---|---|---|
EventCallbackFunc_T | callbackFunc | Callback function pointer. |
void * | context |
Context for the callback. The callback function is required to 'understand' the actual type of the context pointer being passed to it. |
typedef void(* Cpl::System::SharedEventHandlerApi::EventCallbackFunc_T) (void *context) |
Definition of event flag callback functions.
|
inlinevirtual |
Virtual destructor.
|
pure virtualnoexcept |
This method 'dispatches' the processing associated with the specified Event based the list/array of callback functions.
Implemented in Cpl::System::SharedEventHandler< N >.