GM6000 Digital Heater Controller Branch: main
SDX-1330
ReturnHandler.h
Go to the documentation of this file.
1#ifndef Cpl_Itc_ReturnHandler_h_
2#define Cpl_Itc_ReturnHandler_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///
16namespace Cpl {
17///
18namespace Itc {
19
20/** This abstract class represents the action that is executed by a server
21 thread in response to the server completing the operation requested by
22 the SrvMsg, when the server invokes the returnToSender() operation of
23 the message. Implementations of this class are the responsibility of
24 the client.
25 */
27{
28public:
29 /** This abstract operation is invoked when the server has completed processing
30 the client request message. Subclass implementations should notify
31 the client that the request is complete.
32 */
33 virtual void rts() noexcept=0;
34
35public:
36 /// Virtual destructor
37 virtual ~ReturnHandler() {}
38};
39
40}; // end namespaces
41};
42#endif // end header latch
This abstract class represents the action that is executed by a server thread in response to the serv...
Definition ReturnHandler.h:27
virtual void rts() noexcept=0
This abstract operation is invoked when the server has completed processing the client request messag...
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20