GM6000 Digital Heater Controller Branch: main
SDX-1330
AtomicCallback.h
Go to the documentation of this file.
1#ifndef Cpl_Itc_AtomicCallback_h_
2#define Cpl_Itc_AtomicCallback_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
16///
17namespace Cpl {
18///
19namespace Itc {
20
21/** This abstract class defines a call-back interface that clients use
22 to issue multiple service requests as a single "atomic" operation.
23 The call-back method provides a API that the client can call one
24 or more of the methods, one or more times while inside the context
25 of the call-back method. All operation(s) invoked inside the call-back
26 method run in the server's thread and thus are "atomic" with respect to
27 the server.
28
29 TEMPLATE ARGS: ACCESS_API - API that the client uses to accomplish its
30 "Atomic Operation"
31 */
32template <class ACCESS_API>
34{
35public:
36 /// Virtual destructor
37 virtual ~AtomicCallback() {}
38
39
40public:
41 /** This is a call-back method that is implemented by the client.
42 This method will run under the server's thread context and
43 all method(s) called on the supplied API are atomic with
44 respect to the server.
45 */
46 virtual void execute( ACCESS_API& api ) = 0;
47};
48
49
50}; // end namespaces
51};
52#endif // end header latch
This abstract class defines a call-back interface that clients use to issue multiple service requests...
Definition AtomicCallback.h:34
virtual void execute(ACCESS_API &api)=0
This is a call-back method that is implemented by the client.
virtual ~AtomicCallback()
Virtual destructor.
Definition AtomicCallback.h:37
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20