![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This abstract class defines a call-back interface that clients use to issue multiple service requests as a single "atomic" operation. More...
This abstract class defines a call-back interface that clients use to issue multiple service requests as a single "atomic" operation.
The call-back method provides a API that the client can call one or more of the methods, one or more times while inside the context of the call-back method. All operation(s) invoked inside the call-back method run in the server's thread and thus are "atomic" with respect to the server.
TEMPLATE ARGS: ACCESS_API - API that the client uses to accomplish its "Atomic Operation"
#include <AtomicCallback.h>
Public Member Functions | |
virtual | ~AtomicCallback () |
Virtual destructor. | |
virtual void | execute (ACCESS_API &api)=0 |
This is a call-back method that is implemented by the client. | |
|
inlinevirtual |
Virtual destructor.
|
pure virtual |
This is a call-back method that is implemented by the client.
This method will run under the server's thread context and all method(s) called on the supplied API are atomic with respect to the server.