GM6000 Digital Heater Controller Branch: main
SDX-1330
PostApi.h
Go to the documentation of this file.
1#ifndef Cpl_Itc_PostApi_h_
2#define Cpl_Itc_PostApi_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"
16
17
18///
19namespace Cpl {
20///
21namespace Itc {
22
23
24
25/** This abstract class represents the interface used to send
26 messages to a mailbox. In a client-server relationship
27 this interface is always invoked by the client.
28 */
29
31{
32public:
33 /** This operation is called by clients, which wish to send a message
34 to the owner of this mailbox. The message is threaded into the
35 mailbox queue for the mailbox owner to receive, and the operation
36 returns immediately. The client relinquishes ownership of the memory
37 until the message's returnToSender() function is invoked.
38 */
39 virtual void post( Message& msg ) noexcept=0;
40
41 /** This operation is called by clients which wish to send a message
42 to the owner of this mailbox, and then block on the client's thread
43 semaphore. First, the message is threaded into the mailbox queue
44 for the mailbox owner to receive. Next, the client waits on its
45 thread semaphore until the semaphore is signaled.
46 */
47 virtual void postSync( Message& msg ) noexcept=0;
48
49
50public:
51 /// Virtual destructor
52 virtual ~PostApi() {}
53};
54
55}; // end namespaces
56};
57#endif // end header latch
58
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
virtual void post(Message &msg) noexcept=0
This operation is called by clients, which wish to send a message to the owner of this mailbox.
virtual ~PostApi()
Virtual destructor.
Definition PostApi.h:52
virtual void postSync(Message &msg) noexcept=0
This operation is called by clients which wish to send a message to the owner of this mailbox,...
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20