Depends-On: #229
What
Create a new example app that showcases the Alive API of the launch_manager.
Acceptance Criteria (DoD)
New example app showcasing the alive API
How
score::mw::lifecycle::Alive alive("instance");
// report Running state
// ...
// Report alive notifications
while(!exitRequested) {
alive.ReportAlive();
std::this_thread::sleep_for(std::chrono::milliseconds(<Sleep-Time>));
}
return 0;
}
Depends-On: #229
What
Create a new example app that showcases the Alive API of the launch_manager.
Acceptance Criteria (DoD)
New example app showcasing the alive API
How