GM6000 Digital Heater Controller
Branch: main
SDX-1330
Main Page
Namespaces
Components
Files
File List
File Members
Cpl
Itc
Mailbox.h
Go to the documentation of this file.
1
#ifndef Cpl_Itc_Mailbox_h_
2
#define Cpl_Itc_Mailbox_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/Itc/PostApi.h
"
16
#include "
Cpl/Container/SList.h
"
17
#include "
Cpl/System/Signable.h
"
18
19
20
///
21
namespace
Cpl
{
22
///
23
namespace
Itc {
24
25
/** This mailbox class implements an Inter Thread Communications message
26
queue. There is no limit to the number of messages that can be stored in
27
the queue at any given time since the FIFO queue and the messages uses the
28
intrusive container mechanisms from the Cpl::Container namespace.
29
*/
30
31
class
Mailbox
:
32
public
PostApi
,
33
public
Cpl::Container::SList
<Message>
34
{
35
public
:
36
/// Constructor
37
Mailbox
(
Cpl::System::Signable
& myEventLoop );
38
39
40
public
:
41
/// See Cpl::Itc::PostApi
42
void
post
(
Message
& msg )
noexcept
;
43
44
/// See Cpl::Itc::PostApi
45
void
postSync
(
Message
& msg )
noexcept
;
46
47
48
protected
:
49
/** This operation is used process any pending messages.
50
*/
51
virtual
void
processMessages
() noexcept;
52
53
54
/** This method IS thread safe.
55
56
This method returns true if there is at least one queued ITC message
57
*/
58
bool
isPendingMessage
() noexcept;
59
60
protected:
61
/// The EventLoop that I wait-on/dispatch-msgs-from
62
Cpl
::System::Signable&
m_eventLoop
;
63
64
};
65
66
67
};
// end namespaces
68
};
69
#endif
// end header latch
PostApi.h
SList.h
Signable.h
Cpl::Container::SList
This template class implements a singly linked list which maintains the ordering imposed on it by the...
Definition
SList.h:30
Cpl::Itc::Mailbox
This mailbox class implements an Inter Thread Communications message queue.
Definition
Mailbox.h:34
Cpl::Itc::Mailbox::isPendingMessage
bool isPendingMessage() noexcept
This method IS thread safe.
Cpl::Itc::Mailbox::processMessages
virtual void processMessages() noexcept
This operation is used process any pending messages.
Cpl::Itc::Mailbox::Mailbox
Mailbox(Cpl::System::Signable &myEventLoop)
Constructor.
Cpl::Itc::Mailbox::postSync
void postSync(Message &msg) noexcept
See Cpl::Itc::PostApi.
Cpl::Itc::Mailbox::post
void post(Message &msg) noexcept
See Cpl::Itc::PostApi.
Cpl::Itc::Mailbox::m_eventLoop
Cpl::System::Signable & m_eventLoop
The EventLoop that I wait-on/dispatch-msgs-from.
Definition
Mailbox.h:62
Cpl::Itc::Message
This abstract class defines the operations for an ITC message.
Definition
Message.h:25
Cpl::Itc::PostApi
This abstract class represents the interface used to send messages to a mailbox.
Definition
PostApi.h:31
Cpl::System::Signable
This abstract class defines the interface by which a client can cause an object that is waiting-on-a-...
Definition
Signable.h:28
Cpl
The 'Cpl' namespace is the root name space for the Colony.
Definition
Api16.h:20
Generated on Sat Jan 18 2025 22:23:55 for GM6000 Digital Heater Controller by
1.9.8