![]() |
Imt.Base C++ API V4.1.1.0
|
Interface of an executable which is called by the runtime once an event has to be processed. More...
#include <Imt.Base.Dff.Runtime/inc/Imt.Base.Dff.Runtime/ExecutableIfc.h>
Public Member Functions | |
ExecutableIfc (ExecutableIfc const &)=delete | |
ExecutableIfc (ExecutableIfc &&)=delete | |
ExecutableIfc & | operator= (ExecutableIfc const &) &=delete |
ExecutableIfc & | operator= (ExecutableIfc &&) &=delete |
virtual | ~ExecutableIfc ()=default |
Destructor. | |
virtual void | execute (uint16_t const protocolID, ::imt::base::core::serialization::Deserializer &buffer)=0 |
One-Shot function which is called once a message is ready to be processed. | |
virtual ExecutableConfiguration const & | getExecutableConfiguration () const =0 |
Get the executable configuration. | |
virtual RuntimePriority | getPriority () const =0 |
Get a priority. | |
Protected Member Functions | |
ExecutableIfc () noexcept=default | |
Default constructor. | |
Interface of an executable which is called by the runtime once an event has to be processed.
This interface can be used to keep ownership of an executable and delete it at the end of its lifetime. Executables shall not be copied or moved.
Definition at line 56 of file ExecutableIfc.h.
|
delete |
|
delete |
|
virtualdefault |
Destructor.
|
protecteddefaultnoexcept |
Default constructor.
|
pure virtual |
One-Shot function which is called once a message is ready to be processed.
Behavior: Process the message (run to completion) and return to the runtime.
Example implementation:
protocolID | Identifier of the protocol. |
buffer | Deserializer for deserialization of the event data. |
Implemented in imt::base::dff::activeparts::test::TestLoggerAP.
|
pure virtual |
Get the executable configuration.
Implemented in imt::base::dff::activeparts::ActivePartAbs.
|
pure virtual |
|
delete |
|
delete |