GM6000 Digital Heater Controller Branch: main
SDX-1330
OpenApi.h
Go to the documentation of this file.
1#ifndef Cpl_Itc_OpenApi_h_
2#define Cpl_Itc_OpenApi_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 open interface. This open interface
22 provides the ability to run an "initialize/open" 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 open 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 opened.
29
30 2) The thread of the caller will block until the ITC server object
31 has completed its initialization (i.e. called returnToSender() on
32 the Open Request message).
33 */
35{
36public:
37 /** Synchronously opens/initializes the called object. Returns true
38 if the open operation was successful
39 */
40 virtual bool open( void* args = nullptr ) = 0;
41
42
43public:
44 /// Virtual destructor
45 virtual ~OpenApi() {}
46};
47
48
49}; // end namespaces
50};
51#endif // end header latch
This abstract class defines an open interface.
Definition OpenApi.h:35
virtual bool open(void *args=nullptr)=0
Synchronously opens/initializes the called object.
virtual ~OpenApi()
Virtual destructor.
Definition OpenApi.h:45
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20