GM6000 Digital Heater Controller Branch: main
SDX-1330
CloseRequest.h
Go to the documentation of this file.
1#ifndef Cpl_Itc_CloseRequest_h_
2#define Cpl_Itc_CloseRequest_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 class request
42
43 /// Optional arguments
44 void* m_args;
45
46 public:
47 /// Constructor
48 ClosePayload( void* args = nullptr ) :m_success( true ), m_args( args ) {}
49 };
50
51
52 /// Message Type: Close
54
55
56public:
57 /// Request: Close
58 virtual void request( CloseMsg& msg ) = 0;
59
60public:
61 ///
62 virtual ~CloseRequest() {}
63};
64
65
66
67///////////////////////////////////////////////////////////////////////////////
68/** This abstract class define response message types for a set of ITC services.
69 The response() method(s) are to be implemented by the 'client'
70
71 NOTE: Typically the 'Open Request' is done synchronously. This interface
72 is provided for completeness for the edge case of doing the Open
73 Request asynchronously.
74 */
75
77{
78public:
79 /// Response Message Type: Open
83
84
85public:
86 /// Response: OpenMsg
87 virtual void response( CloseMsg& msg ) = 0;
88
89
90public:
91 /// Virtual destructor
92 virtual ~CloseResponse() {}
93};
94
95}; // end namespaces
96};
97#endif // end header latch
Payload for Message: Open.
Definition CloseRequest.h:38
bool m_success
Pass/Fail result of the class request.
Definition CloseRequest.h:41
ClosePayload(void *args=nullptr)
Constructor.
Definition CloseRequest.h:48
void * m_args
Optional arguments.
Definition CloseRequest.h:44
This abstract class define message types and payloads for a set of ITC services.
Definition CloseRequest.h:30
virtual void request(CloseMsg &msg)=0
Request: Close.
RequestMessage< CloseRequest, ClosePayload > CloseMsg
Message Type: Close.
Definition CloseRequest.h:53
Cpl::Itc::SAP< CloseRequest > SAP
SAP for this API.
Definition CloseRequest.h:33
This abstract class define response message types for a set of ITC services.
Definition CloseRequest.h:77
ResponseMessage< CloseResponse, CloseRequest, CloseRequest::ClosePayload > CloseMsg
Response Message Type: Open.
Definition CloseRequest.h:82
virtual ~CloseResponse()
Virtual destructor.
Definition CloseRequest.h:92
virtual void response(CloseMsg &msg)=0
Response: OpenMsg.
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