GM6000 Digital Heater Controller Branch: main
SDX-1330
OpenRequest.h
Go to the documentation of this file.
1#ifndef Cpl_Itc_OpenRequest_h_
2#define Cpl_Itc_OpenRequest_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
17#include "Cpl/Itc/SAP.h"
18
19///
20namespace Cpl {
21///
22namespace Itc {
23
24/** This abstract class define message types and payloads for a set of
25 ITC services. The request() method(s) are to be implemented by the
26 'server'
27 */
28
30{
31public:
32 /// SAP for this API
34
35public:
36 /// Payload for Message: Open
38 {
39 public:
40 /// Pass/Fail result of the open request
42
43 /// Optional arguments
44 void* m_args;
45 public:
46 /// Constructor
47 OpenPayload( void* args = nullptr ):m_success( true ), m_args(args) {}
48 };
49
50
51 /// Message Type: Open
53
54public:
55 /// Request: Open
56 virtual void request( OpenMsg& msg ) = 0;
57
58public:
59 ///
60 virtual ~OpenRequest() {}
61};
62
63
64
65///////////////////////////////////////////////////////////////////////////////
66/** This abstract class define response message types for a set of ITC services.
67 The response() method(s) are to be implemented by the 'client'
68
69 NOTE: Typically the 'Open Request' is done synchronously. This interface
70 is provided for completeness for the edge case of doing the Open
71 Request asynchronously.
72 */
74{
75public:
76 /// Response Message Type: Open
80
81
82public:
83 /// Response: OpenMsg
84 virtual void response( OpenMsg& msg ) = 0;
85
86
87public:
88 /// Virtual destructor
89 virtual ~OpenResponse() {}
90};
91
92
93}; // end namespaces
94};
95#endif // end header latch
Payload for Message: Open.
Definition OpenRequest.h:38
OpenPayload(void *args=nullptr)
Constructor.
Definition OpenRequest.h:47
bool m_success
Pass/Fail result of the open request.
Definition OpenRequest.h:41
void * m_args
Optional arguments.
Definition OpenRequest.h:44
This abstract class define message types and payloads for a set of ITC services.
Definition OpenRequest.h:30
Cpl::Itc::SAP< OpenRequest > SAP
SAP for this API.
Definition OpenRequest.h:33
RequestMessage< OpenRequest, OpenPayload > OpenMsg
Message Type: Open.
Definition OpenRequest.h:52
virtual void request(OpenMsg &msg)=0
Request: Open.
This abstract class define response message types for a set of ITC services.
Definition OpenRequest.h:74
virtual ~OpenResponse()
Virtual destructor.
Definition OpenRequest.h:89
virtual void response(OpenMsg &msg)=0
Response: OpenMsg.
ResponseMessage< OpenResponse, OpenRequest, OpenRequest::OpenPayload > OpenMsg
Response Message Type: Open.
Definition OpenRequest.h:79
This template class represents a service request message to a particular server.
Definition RequestMessage.h:34
This template class represents a client response message, which is posted to the client's mailbox aft...
Definition ResponseMessage.h:40
This concrete template class represents the interface to a ITC Service Access Point (SAP).
Definition SAP.h:30
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20