GM6000 Digital Heater Controller
Branch: main
SDX-1330
Main Page
Namespaces
Components
Files
File List
File Members
Cpl
Itc
AtomicSync.h
Go to the documentation of this file.
1
#ifndef Cpl_Itc_AtomicSync_h_
2
#define Cpl_Itc_AtomicSync_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/AtomicApi.h
"
16
#include "
Cpl/Itc/AtomicRequest.h
"
17
#include "
Cpl/Itc/SyncReturnHandler.h
"
18
19
20
///
21
namespace
Cpl
{
22
///
23
namespace
Itc {
24
25
26
/** This concrete class provides the ITC wrapper implementation for
27
calling the "Atomic Api" synchronously.
28
29
TEMPLATE ARGS: ACCESS_API - API that the client uses to accomplish its
30
"Atomic Operation"
31
*/
32
template
<
class
ACCESS_API>
33
class
AtomicSync
:
public
AtomicRequest
<ACCESS_API>,
34
public
AtomicApi
<ACCESS_API>
35
{
36
private
:
37
/// Reference to the server's (my) mailbox
38
PostApi
& m_mbox;
39
40
public
:
41
/// Constructor
42
AtomicSync
(
PostApi
& myMbox )
noexcept
;
43
44
public
:
45
/// See AtomicApi
46
void
executeAtomic
(
AtomicCallback<ACCESS_API>
& clientToCallback );
47
};
48
49
50
/////////////////////////////////////////////////////////////////////////////
51
// IMPLEMENTATION
52
/////////////////////////////////////////////////////////////////////////////
53
54
template
<
class
ACCESS_API>
55
AtomicSync<ACCESS_API>::AtomicSync
(
PostApi
& myMbox ) noexcept
56
:m_mbox( myMbox )
57
{
58
}
59
60
template
<
class
ACCESS_API>
61
void
AtomicSync<ACCESS_API>::executeAtomic
(
AtomicCallback<ACCESS_API>
& clientToCallback )
62
{
63
typename
AtomicRequest<ACCESS_API>::Payload
payload( clientToCallback );
64
SyncReturnHandler
srh;
65
typename
AtomicRequest<ACCESS_API>::ReqMsg
msg( *
this
, payload, srh );
66
m_mbox.postSync( msg );
67
}
68
69
70
71
};
// end namespaces
72
};
73
#endif
// end header latch
74
75
76
AtomicApi.h
AtomicRequest.h
SyncReturnHandler.h
Cpl::Itc::AtomicApi
This abstract class provides an interface to allow a client to call the server synchronously to have ...
Definition
AtomicApi.h:32
Cpl::Itc::AtomicCallback
This abstract class defines a call-back interface that clients use to issue multiple service requests...
Definition
AtomicCallback.h:34
Cpl::Itc::AtomicRequest::Payload
Payload for Message.
Definition
AtomicRequest.h:47
Cpl::Itc::AtomicRequest
This concrete class define the 'Atomic' Message request that allows a client to invoke multiple opera...
Definition
AtomicRequest.h:38
Cpl::Itc::AtomicSync
This concrete class provides the ITC wrapper implementation for calling the "Atomic Api" synchronousl...
Definition
AtomicSync.h:35
Cpl::Itc::AtomicSync::executeAtomic
void executeAtomic(AtomicCallback< ACCESS_API > &clientToCallback)
See AtomicApi.
Definition
AtomicSync.h:61
Cpl::Itc::AtomicSync::AtomicSync
AtomicSync(PostApi &myMbox) noexcept
Constructor.
Definition
AtomicSync.h:55
Cpl::Itc::PostApi
This abstract class represents the interface used to send messages to a mailbox.
Definition
PostApi.h:31
Cpl::Itc::RequestMessage
This template class represents a service request message to a particular server.
Definition
RequestMessage.h:34
Cpl::Itc::SyncReturnHandler
This class implements a synchronous ReturnHandler.
Definition
SyncReturnHandler.h:35
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