GM6000 Digital Heater Controller Branch: main
SDX-1330
SyncReturnHandler.h
Go to the documentation of this file.
1#ifndef Cpl_Itc_SyncReturnHandler_h_
2#define Cpl_Itc_SyncReturnHandler_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
17#include "Cpl/System/Signable.h"
18
19///
20namespace Cpl {
21///
22namespace Itc {
23
24/** This class implements a synchronous ReturnHandler. The assumption is that
25 the client sends a message to a server mailbox, and then blocks on the
26 thread's semaphore. When the server thread invokes the rts() method, the
27 thread/semaphore is signaled, and thus the client is notified that it has
28 ownership of the message and that the server has completed processing the
29 message.
30
31 The expected typical usage is to created a SyncReturnHandler on the stack
32 in the client's thread just before the mailbox.postSync() method is called.
33 */
35{
36private:
37 /** Reference to the client thread's thread semaphore which is used
38 to notify the client that the server has completed processing
39 the message.
40 */
41 Cpl::System::Signable& m_waiter;
42
43public:
44 /** The constructor initializes the handler with a reference to the
45 thread semaphore of the current thread.
46 */
48
49public:
50 /// See ReturnHandler
51 void rts() noexcept;
52};
53
54
55}; // end namespaces
56};
57#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
This class implements a synchronous ReturnHandler.
Definition SyncReturnHandler.h:35
void rts() noexcept
See ReturnHandler.
SyncReturnHandler()
The constructor initializes the handler with a reference to the thread semaphore of the current threa...
This abstract class defines the interface by which a client can cause an object that is waiting-on-a-...
Definition Signable.h:28
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20