![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This abstract class defines an close interface. More...
This abstract class defines an close interface.
This close interface provides the ability to run an "clean-up/close" routine for a ITC server object IN its native thread (i.e. the thread that the ITC server object executes its ITC requests in). The close call is a SYNCHRONOUS ITC call. This has the following effects/requirements:
1) The caller MUST be in a different thread than the thread of the object being closed.
2) The thread of the caller will block until the ITC server object has completed its clean-up (i.e. called returnToSender() on the Close Request message).
#include <CloseApi.h>
Public Member Functions | |
virtual bool | close (void *args=nullptr)=0 |
Synchronously closes/cleans-up the called object. | |
virtual | ~CloseApi () |
Virtual destructor. | |
|
inlinevirtual |
Virtual destructor.
|
pure virtual |
Synchronously closes/cleans-up the called object.
The method returns if the close operation was successful.
Implemented in Cpl::Itc::CloseSync.