GM6000 Digital Heater Controller Branch: main
SDX-1330
EraseRequest.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_Persistent_EraseRequest_h_
2#define Cpl_Dm_Persistent_EraseRequest_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
18#include "Cpl/Itc/SAP.h"
19
20///
21namespace Cpl {
22///
23namespace Dm {
24///
25namespace Persistent {
26
27
28/** This abstract class define ITC message type and payload for the application
29 to request invalidating/corrupting the Record in persistent storage (i.e.
30 logically erase the record in persistent storage)
31
32 See the Cpl/Itc/README.txt file for the semantics for the 'ownership' of the
33 payload contents.
34
35 NOTE: This interface can/should NOT be used synchronously. The application
36 is required to only use asynchronous semantics.
37 */
39{
40public:
41 /// SAP for this API
43
44public:
45 /// Payload for Message
46 class Payload
47 {
48 public:
49 /** Erase results (response field)
50 true = the Record was successfully erased/invalidate in persistent storage
51 false = an error occurred and the state of record in persistent storage is unknown
52 */
54
55 public:
56 /// Constructor.
57 Payload() :m_success( false ) {}
58 };
59
60
61public:
62 /// Message Type:
64
65 /// Request: Erase message
66 virtual void request( EraseMsg& msg ) = 0;
67
68public:
69 /// Virtual Destructor
70 virtual ~EraseRequest() {}
71};
72
73
74/** This abstract class define ITC message type and payload for asynchronous
75 response (to the application) of a Erase message.
76
77 The Application is responsible for implementing the response method(s).
78 */
80{
81public:
82 /// Response Message Type
86
87public:
88 /// Response
89 virtual void response( EraseMsg& msg ) = 0;
90
91
92public:
93 /// Virtual destructor
94 virtual ~EraseResponse() {}
95};
96
97
98}; // end namespaces
99};
100};
101#endif // end header latch
Payload for Message.
Definition EraseRequest.h:47
bool m_success
Erase results (response field) true = the Record was successfully erased/invalidate in persistent sto...
Definition EraseRequest.h:53
Payload()
Constructor.
Definition EraseRequest.h:57
This abstract class define ITC message type and payload for the application to request invalidating/c...
Definition EraseRequest.h:39
virtual void request(EraseMsg &msg)=0
Request: Erase message.
Cpl::Itc::RequestMessage< EraseRequest, Payload > EraseMsg
Message Type:
Definition EraseRequest.h:63
Cpl::Itc::SAP< EraseRequest > SAP
SAP for this API.
Definition EraseRequest.h:42
virtual ~EraseRequest()
Virtual Destructor.
Definition EraseRequest.h:70
This abstract class define ITC message type and payload for asynchronous response (to the application...
Definition EraseRequest.h:80
virtual void response(EraseMsg &msg)=0
Response.
virtual ~EraseResponse()
Virtual destructor.
Definition EraseRequest.h:94
Cpl::Itc::ResponseMessage< EraseResponse, EraseRequest, EraseRequest::Payload > EraseMsg
Response Message Type.
Definition EraseRequest.h:85
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