GM6000 Digital Heater Controller Branch: main
SDX-1330
FsmEventQueue_.h
Go to the documentation of this file.
1#ifndef Ajax_Heating_Supervisor_FsmEventQueue_x_h_
2#define Ajax_Heating_Supervisor_FsmEventQueue_x_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2020 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15
16
17/* This file is auto-generated DO NOT MANUALLY EDIT this file! */
18
19
22
23
24///
25namespace Ajax { namespace Heating { namespace Supervisor {
26
27
28/// Event Queue for FSM events.
29class FsmEventQueue_: public Fsm, public Cpl::Container::RingBuffer<FSM_EVENT_T>
30{
31public:
32 /// Define callback function that is called when an event has completed
33 typedef void ( *EventCompletedCbFunc_T )( FSM_EVENT_T proceessedMsg );
34
35protected:
36 /// Optional Callback function for event-completed (typically used for unit testing purposes)
38
39 /// Memory for Event queue
40 FSM_EVENT_T m_eventQueMemory[4];
41
42 /// Flag for tracking re-entrant events
44
45public:
46 /// Constructor
47 FsmEventQueue_( EventCompletedCbFunc_T eventCompletedCallback = nullptr );
48
49public:
50 /// This method properly queues and process event messages
51 virtual void generateEvent( FSM_EVENT_T msg );
52};
53
54};};}; // end namespace(s)
55#endif /// end header latch
Event Queue for FSM events.
Definition FsmEventQueue_.h:30
FSM_EVENT_T m_eventQueMemory[4]
Memory for Event queue.
Definition FsmEventQueue_.h:40
void(* EventCompletedCbFunc_T)(FSM_EVENT_T proceessedMsg)
Define callback function that is called when an event has completed.
Definition FsmEventQueue_.h:33
bool m_processingFsmEvent
Flag for tracking re-entrant events.
Definition FsmEventQueue_.h:43
virtual void generateEvent(FSM_EVENT_T msg)
This method properly queues and process event messages.
FsmEventQueue_(EventCompletedCbFunc_T eventCompletedCallback=nullptr)
Constructor.
EventCompletedCbFunc_T m_eventCompletedCallback
Optional Callback function for event-completed (typically used for unit testing purposes)
Definition FsmEventQueue_.h:37
Here is the graph that shows the state machine this class implements.
This template class implements a Ring Buffer.
Definition RingBuffer.h:46
The 'Ajax' namespace is the root name space all GM6000 application specific source code.