GM6000 Digital Heater Controller Branch: main
SDX-1330
CloseApi.h
Go to the documentation of this file.
1#ifndef Cpl_Itc_CloseApi_h_
2#define Cpl_Itc_CloseApi_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
16///
17namespace Cpl {
18///
19namespace Itc {
20
21/** This abstract class defines an close interface. This close interface
22 provides the ability to run an "clean-up/close" routine for a
23 ITC server object IN its native thread (i.e. the thread that the
24 ITC server object executes its ITC requests in). The close call
25 is a SYNCHRONOUS ITC call. This has the following effects/requirements:
26
27 1) The caller MUST be in a different thread than the thread of the object
28 being closed.
29
30 2) The thread of the caller will block until the ITC server object
31 has completed its clean-up (i.e. called returnToSender() on
32 the Close Request message).
33 */
35{
36public:
37 /** Synchronously closes/cleans-up the called object. The method returns
38 if the close operation was successful.
39 */
40 virtual bool close( void* args = nullptr ) = 0;
41
42
43public:
44 /// Virtual destructor
45 virtual ~CloseApi() {}
46};
47
48
49}; // end namespaces
50};
51#endif // end header latch
This abstract class defines an close interface.
Definition CloseApi.h:35
virtual ~CloseApi()
Virtual destructor.
Definition CloseApi.h:45
virtual bool close(void *args=nullptr)=0
Synchronously closes/cleans-up the called object.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20