GM6000 Digital Heater Controller Branch: main
SDX-1330
MailboxServer.h
Go to the documentation of this file.
1#ifndef Cpl_Itc_MailboxServer_h_
2#define Cpl_Itc_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
16#include "Cpl/Itc/Mailbox.h"
17
18
19///
20namespace Cpl {
21///
22namespace Itc {
23
24/** This class collects the common functions of a generic server providing a
25 mailbox and Event loop.
26
27 The mailbox server extents the Cpl::System::EventLoop interface so it
28 has support for EventFlags and Software Timers.
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 ITC message (if one was received) is processed.
34
35 */
37 public Mailbox,
39{
40public:
41 /** Constructor. The argument 'timingTickInMsec' specifies the timing
42 resolution that will be used for Cpl::Timer::Local Timers.
43 */
45 Cpl::System::SharedEventHandlerApi* eventHandler = 0 ) noexcept;
46
47protected:
48 /// See Cpl::System::Runnable
49 void appRun();
50
51};
52
53}; // end namespaces
54};
55#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 mailbox class implements an Inter Thread Communications message queue.
Definition Mailbox.h:34
This class collects the common functions of a generic server providing a mailbox and Event loop.
Definition MailboxServer.h:39
MailboxServer(unsigned long timingTickInMsec=OPTION_CPL_SYSTEM_EVENT_LOOP_TIMEOUT_PERIOD, Cpl::System::SharedEventHandlerApi *eventHandler=0) noexcept
Constructor.
void appRun()
See Cpl::System::Runnable.
This concrete class is a Runnable object that provides a event driven execution model for a thread.
Definition EventLoop.h:52
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