GM6000 Digital Heater Controller Branch: main
SDX-1330
ServiceMessage.h
Go to the documentation of this file.
1#ifndef Cpl_Itc_ServiceMessage_h_
2#define Cpl_Itc_ServiceMessage_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/Message.h"
17
18///
19namespace Cpl {
20///
21namespace Itc {
22
23/** This class represents a defined message, which is posted to a mailbox-server
24 as a request. It includes members which enable the client to be notified when
25 the server thread has completed the request.
26 */
27class ServiceMessage : public Message
28{
29private:
30 /** References the handler which is invoked by the server thread when
31 it returns ownership of the message to the client.
32 */
33 ReturnHandler& m_rh;
34
35public:
36 /// Constructor
38
39 /** This operation is invoked by the server when it has completed the
40 operation implemented as a part of this message. Use of this operation
41 relinquishes the ownership of the message from the server (which invokes
42 the operation) to the client.
43 */
44 void returnToSender() noexcept;
45};
46
47
48}; // end namespaces
49};
50#endif // end header latch
This abstract class defines the operations for an ITC message.
Definition Message.h:25
This abstract class represents the action that is executed by a server thread in response to the serv...
Definition ReturnHandler.h:27
This class represents a defined message, which is posted to a mailbox-server as a request.
Definition ServiceMessage.h:28
ServiceMessage(ReturnHandler &rh) noexcept
Constructor.
void returnToSender() noexcept
This operation is invoked by the server when it has completed the operation implemented as a part of ...
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20