GM6000 Digital Heater Controller Branch: main
SDX-1330
AsyncReturnHandler.h
Go to the documentation of this file.
1#ifndef Cpl_Itc_AsyncReturnHandler_h_
2#define Cpl_Itc_AsyncReturnHandler_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
16#include "Cpl/Itc/PostApi.h"
17
18///
19namespace Cpl {
20///
21namespace Itc {
22
23
24/** This class implements an asynchronous ReturnHandler. When the rts() method
25 of the message associated with this class is invoked, the message referenced
26 as a member variable of this class is posted to the mailbox referenced as
27 a member variable of this class. It is expected that the referenced mailbox
28 belongs to the client (i.e. the sender of the original message), and that
29 the message contains a reference to the original message, such that the
30 original message can be released by the client.
31 */
33{
34protected:
35 /** Refers to the mailbox to which the response message will be posted.
36 */
38
39 /** Refers to the response message to be posted to the response mailbox.
40 */
42
43public:
44 /** The constructor initializes the response mailbox and message references.
45 */
47
48
49public:
50 /// See ReturnHandler
51 void rts() noexcept;
52};
53
54}; // end namespaces
55};
56#endif // end header latch
This class implements an asynchronous ReturnHandler.
Definition AsyncReturnHandler.h:33
PostApi & m_mbox
Refers to the mailbox to which the response message will be posted.
Definition AsyncReturnHandler.h:37
void rts() noexcept
See ReturnHandler.
AsyncReturnHandler(PostApi &mbox, Message &msg)
The constructor initializes the response mailbox and message references.
Message & m_msg
Refers to the response message to be posted to the response mailbox.
Definition AsyncReturnHandler.h:41
This abstract class defines the operations for an ITC message.
Definition Message.h:25
This abstract class represents the interface used to send messages to a mailbox.
Definition PostApi.h:31
This abstract class represents the action that is executed by a server thread in response to the serv...
Definition ReturnHandler.h:27
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20