GM6000 Digital Heater Controller Branch: main
SDX-1330
CloseSync.h
Go to the documentation of this file.
1#ifndef Cpl_Itc_CloseSync_h_
2#define Cpl_Itc_CloseSync_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/OpenSync.h"
17#include "Cpl/Itc/CloseApi.h"
18
19///
20namespace Cpl {
21///
22namespace Itc {
23
24/** This partially concrete class implements the synchronous ITC close
25 call for the CloseApi. The subclass is still required to implement the ITC
26 request() method.
27
28 NOTE: This class is derived from OpenSync -->if you support a close(),
29 call, you better have had an open() call.
30 */
31class CloseSync : public OpenSync,
32 public CloseApi,
33 public CloseRequest
34{
35public:
36 /// Constructor
37 CloseSync( PostApi& myMbox ) noexcept;
38
39
40public:
41 /// See CloseSync
42 bool close( void* args = nullptr );
43};
44
45
46
47
48}; // end namespaces
49};
50#endif // end header latch
This abstract class defines an close interface.
Definition CloseApi.h:35
This abstract class define message types and payloads for a set of ITC services.
Definition CloseRequest.h:30
This partially concrete class implements the synchronous ITC close call for the CloseApi.
Definition CloseSync.h:34
CloseSync(PostApi &myMbox) noexcept
Constructor.
bool close(void *args=nullptr)
See CloseSync.
This partially concrete class implements the synchronous ITC open call for the OpenApi.
Definition OpenSync.h:31
This abstract class represents the interface used to send messages to a mailbox.
Definition PostApi.h:31
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20