![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This template concrete class is a 'strategy class' in that in provides most of work needed for a Runnable object to support a list of callback functions for handling event-signally - instead of hard coded switch statement in its processEventFlag() method. More...
This template concrete class is a 'strategy class' in that in provides most of work needed for a Runnable object to support a list of callback functions for handling event-signally - instead of hard coded switch statement in its processEventFlag() method.
Template Arg: N - the max number of callbacks supported.
#include <SharedEventHandler.h>
Public Member Functions | |
SharedEventHandler (EventCallback_T(&myCallbacks)[N]) | |
Constructor. | |
void | processEventFlag (uint8_t eventNumber) noexcept |
This method 'dispatches' the processing associated with the specified Event based the list/array of callback functions. | |
![]() | |
virtual | ~SharedEventHandlerApi () |
Virtual destructor. | |
Protected Attributes | |
EventCallback_T(& | m_callbacks )[N] |
Reference to my callback functions. | |
Additional Inherited Members | |
![]() | |
typedef void(* | EventCallbackFunc_T) (void *context) |
Definition of event flag callback functions. | |
|
inline |
Constructor.
The 'myCallbacks' argument is an an array of callback entries pointers. The order of array maps directly to the Event flag number, i.e. index 0 is the callback function for Event Flag 0. If no callback is supported for a particular Event Fla/Index use a zero (or nullptr) for the .callbackFunc field/value for the array entry.
|
inlinevirtualnoexcept |
This method 'dispatches' the processing associated with the specified Event based the list/array of callback functions.
Implements Cpl::System::SharedEventHandlerApi.
|
protected |
Reference to my callback functions.