GM6000 Digital Heater Controller Branch: main
SDX-1330
MailboxServer.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_MailboxServer_h_
2#define Cpl_Dm_MailboxServer_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-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include "Cpl/Dm/EventLoop.h"
16#include "Cpl/Itc/Mailbox.h"
17
18
19///
20namespace Cpl {
21///
22namespace Dm {
23
24/** This class extends the Cpl::Dm::EventLoop and Cpl::Itc:Mailbox classes
25 to support the asynchronous change notification generated from Model Points
26 with ITC messaging.
27
28 The order of processing is:
29
30 1. Event Flags are processed. Events are processed in LSb order.
31 2. The timers and their callbacks (if any timers have expired) are
32 processed.
33 3. A single Model Point Change notification (if there is one pending) is
34 processed.
35 4. A single ITC message (it there is on pending) is dispatched.
36 5. The loop is repeated until there are no expired timers, no event
37 flags, no MP change notifications, and no ITC messages - at which
38 point the thread blocks and wait for any of the above asynchronous
39 actions to wake up the thread.
40
41 */
43{
44public:
45 /** Constructor. The argument 'timingTickInMsec' specifies the timing
46 resolution that will be used for Cpl::Timer::Local Timers.
47 */
49 Cpl::System::SharedEventHandlerApi* eventHandler = 0 ) noexcept;
50
51public:
52 /// See Cpl::System::Runnable
53 void appRun();
54};
55
56}; // end namespaces
57};
58#endif // end header latch
#define OPTION_CPL_SYSTEM_EVENT_LOOP_TIMEOUT_PERIOD
Specifies the default timeout period for waiting on a event.
Definition EventLoop.h:26
This class extends the Cpl::System::EventLoop class to support the asynchronous change notification g...
Definition EventLoop.h:44
This class extends the Cpl::Dm::EventLoop and Cpl::Itc:Mailbox classes to support the asynchronous ch...
Definition MailboxServer.h:43
void appRun()
See Cpl::System::Runnable.
MailboxServer(unsigned long timingTickInMsec=OPTION_CPL_SYSTEM_EVENT_LOOP_TIMEOUT_PERIOD, Cpl::System::SharedEventHandlerApi *eventHandler=0) noexcept
Constructor.
This mailbox class implements an Inter Thread Communications message queue.
Definition Mailbox.h:34
This abstract class defines the interface for a Shared Event Handler.
Definition SharedEventHandler.h:30
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20