GM6000 Digital Heater Controller Branch: main
SDX-1330
AtomicApi.h
Go to the documentation of this file.
1#ifndef Cpl_Itc_AtomicApi_h_
2#define Cpl_Itc_AtomicApi_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
17///
18namespace Cpl {
19///
20namespace Itc {
21
22/** This abstract class provides an interface to allow a client
23 to call the server synchronously to have the server invoke
24 the client's atomic operation.
25
26 TEMPLATE ARGS: ACCESS_API - API that the client uses to accomplish its
27 "Atomic Operation"
28 */
29
30template <class ACCESS_API>
32{
33public:
34 /** This method initiates (via sync ITC) the process of invoking
35 an Atomic Operation. The clientToCallback is a reference to the
36 client's interface that performs the atomic "operation".
37 */
38 virtual void executeAtomic( AtomicCallback<ACCESS_API>& clientToCallback ) = 0;
39
40public:
41 /// Virtual Destructor
42 virtual ~AtomicApi() {}
43};
44
45
46
47}; // end namespaces
48};
49#endif // end header latch
50
51
52
This abstract class provides an interface to allow a client to call the server synchronously to have ...
Definition AtomicApi.h:32
virtual void executeAtomic(AtomicCallback< ACCESS_API > &clientToCallback)=0
This method initiates (via sync ITC) the process of invoking an Atomic Operation.
virtual ~AtomicApi()
Virtual Destructor.
Definition AtomicApi.h:42
This abstract class defines a call-back interface that clients use to issue multiple service requests...
Definition AtomicCallback.h:34
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20