GM6000 Digital Heater Controller Branch: main
SDX-1330
OpenSync.h
Go to the documentation of this file.
1#ifndef Cpl_Itc_OpenSync_h_
2#define Cpl_Itc_OpenSync_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/OpenApi.h"
16#include "Cpl/Itc/OpenRequest.h"
17
18
19///
20namespace Cpl {
21///
22namespace Itc {
23
24
25/** This partially concrete class implements the synchronous ITC open
26 call for the OpenApi. The subclass is still required to implement the ITC
27 request() method.
28 */
29class OpenSync : public OpenApi,
30 public OpenRequest
31{
32protected:
33 /// Mailbox (of the server implementing the ITC request() method
35
36
37public:
38 /// Constructor
39 OpenSync( PostApi& myMbox ) noexcept;
40
41
42public:
43 /// See OpenApi
44 bool open( void* args = nullptr );
45};
46
47
48
49}; // end namespaces
50};
51#endif // end header latch
This abstract class defines an open interface.
Definition OpenApi.h:35
This abstract class define message types and payloads for a set of ITC services.
Definition OpenRequest.h:30
This partially concrete class implements the synchronous ITC open call for the OpenApi.
Definition OpenSync.h:31
OpenSync(PostApi &myMbox) noexcept
Constructor.
PostApi & m_mbox
Mailbox (of the server implementing the ITC request() method.
Definition OpenSync.h:34
bool open(void *args=nullptr)
See OpenApi.
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