GM6000 Digital Heater Controller Branch: main
SDX-1330
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"
18
19
20///
21namespace Cpl {
22///
23namespace 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 */
32template <class ACCESS_API>
33class AtomicSync : public AtomicRequest<ACCESS_API>,
34 public AtomicApi<ACCESS_API>
35{
36private:
37 /// Reference to the server's (my) mailbox
38 PostApi & m_mbox;
39
40public:
41 /// Constructor
42 AtomicSync( PostApi& myMbox ) noexcept;
43
44public:
45 /// See AtomicApi
46 void executeAtomic( AtomicCallback<ACCESS_API>& clientToCallback );
47};
48
49
50/////////////////////////////////////////////////////////////////////////////
51// IMPLEMENTATION
52/////////////////////////////////////////////////////////////////////////////
53
54template <class ACCESS_API>
56 :m_mbox( myMbox )
57{
58}
59
60template <class ACCESS_API>
62{
63 typename AtomicRequest<ACCESS_API>::Payload payload( clientToCallback );
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
This abstract class provides an interface to allow a client to call the server synchronously to have ...
Definition AtomicApi.h:32
This abstract class defines a call-back interface that clients use to issue multiple service requests...
Definition AtomicCallback.h:34
Payload for Message.
Definition AtomicRequest.h:47
This concrete class define the 'Atomic' Message request that allows a client to invoke multiple opera...
Definition AtomicRequest.h:38
This concrete class provides the ITC wrapper implementation for calling the "Atomic Api" synchronousl...
Definition AtomicSync.h:35
void executeAtomic(AtomicCallback< ACCESS_API > &clientToCallback)
See AtomicApi.
Definition AtomicSync.h:61
AtomicSync(PostApi &myMbox) noexcept
Constructor.
Definition AtomicSync.h:55
This abstract class represents the interface used to send messages to a mailbox.
Definition PostApi.h:31
This template class represents a service request message to a particular server.
Definition RequestMessage.h:34
This class implements a synchronous ReturnHandler.
Definition SyncReturnHandler.h:35
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20