![]() |
Imt.Base C++ API V4.1.1.0
|
Abstract base class for an ActivePart. More...
#include <Imt.Base.Dff.ActiveParts/inc/Imt.Base.Dff.ActiveParts/ActivePartAbs.h>
Public Attributes | |
PortInput const & | PortIn |
Input Port of the active part (as a public visible read-only reference). | |
Protected Member Functions | |
virtual void | onInitialize ()=0 |
1st step = called by initialize(). | |
virtual void | onStart ()=0 |
2nd step = called by start(). | |
![]() | |
ExecutableIfc () noexcept=default | |
Default constructor. | |
![]() | |
TimerServiceIfc () noexcept=default | |
TimerServiceIfc (TimerServiceIfc const &) noexcept=delete | |
TimerServiceIfc (TimerServiceIfc &&) noexcept=delete | |
~TimerServiceIfc () noexcept=default | |
TimerServiceIfc & | operator= (TimerServiceIfc const &) &noexcept=delete |
TimerServiceIfc & | operator= (TimerServiceIfc &&) &noexcept=delete |
Abstract base class for an ActivePart.
ActiveParts are objects which encapsulate their private state, behavior and data. They communicate to each other solely by exchanging messages.
Definition at line 60 of file ActivePartAbs.h.
|
explicit |
Constructor.
priority | Priority of the active part. |
configuration | Executable configuration |
|
finalvirtual |
Implements imt::base::dff::runtime::ExecutableIfc.
|
finalvirtual |
Implements imt::base::dff::runtime::ExecutableIfc.
void imt::base::dff::activeparts::ActivePartAbs::initialize | ( | ) |
Initialize the active part.
Register in runtime and create internal connections.
bool imt::base::dff::activeparts::ActivePartAbs::isInitialized | ( | ) | const |
Check if active part is initialized.
bool imt::base::dff::activeparts::ActivePartAbs::isStarted | ( | ) | const |
Check if active part is started.
|
final |
Kill the given timer (if required).
timerToKill | Handle of the timer to be killed. |
|
protectedpure virtual |
1st step = called by initialize().
Initialize the active part and if necessary the hardware peripherals. No messages should be sent at this stage, use onStart() function!
Implemented in imt::base::dff::activeparts::test::TestLoggerAP.
|
protectedpure virtual |
2nd step = called by start().
Starts the active part and send all initialization messages.
Implemented in imt::base::dff::activeparts::test::TestLoggerAP.
void imt::base::dff::activeparts::ActivePartAbs::start | ( | ) |
Start the active part.
Here is the correct place to send the initialization messages.
|
final |
Starts or restarts the given one shot timer for this active part.
In case of invalid parameters, timerToStart is set to an invalid time handle.
timerToStart | Timer to be started. |
timerTicksMs | Timer delay in milliseconds. |
|
final |
Start a periodic timer for this active part.
In case of invalid parameters, an invalid time handle is returned.
timerToStart | Timer to be started. |
intervalMs | Timer period in milliseconds. |
PortInput const& imt::base::dff::activeparts::ActivePartAbs::PortIn |
Input Port of the active part (as a public visible read-only reference).
Definition at line 177 of file ActivePartAbs.h.