1#ifndef Cpl_System_SharedEventHandler_h_
2#define Cpl_System_SharedEventHandler_h_
87 if ( eventNumber >= N ||
m_callbacks[eventNumber].callbackFunc == 0 )
This abstract class defines the interface for a Shared Event Handler.
Definition SharedEventHandler.h:30
virtual ~SharedEventHandlerApi()
Virtual destructor.
Definition SharedEventHandler.h:52
void(* EventCallbackFunc_T)(void *context)
Definition of event flag callback functions.
Definition SharedEventHandler.h:33
EventCallbackFunc_T callbackFunc
Callback function pointer.
Definition SharedEventHandler.h:40
void * context
Context for the callback.
Definition SharedEventHandler.h:41
virtual void processEventFlag(uint8_t eventNumber) noexcept=0
This method 'dispatches' the processing associated with the specified Event based the list/array of c...
Define a callback entry (i.e.
Definition SharedEventHandler.h:39
This template concrete class is a 'strategy class' in that in provides most of work needed for a Runn...
Definition SharedEventHandler.h:66
void processEventFlag(uint8_t eventNumber) noexcept
This method 'dispatches' the processing associated with the specified Event based the list/array of c...
Definition SharedEventHandler.h:85
EventCallback_T(& m_callbacks)[N]
Reference to my callback functions.
Definition SharedEventHandler.h:97
SharedEventHandler(EventCallback_T(&myCallbacks)[N])
Constructor.
Definition SharedEventHandler.h:75
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20