This commit is contained in:
Robin Müller 2022-03-04 00:55:41 +01:00
parent e2eb6a46b6
commit 4e6c1cb72a
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
1 changed files with 12 additions and 1 deletions

View File

@ -120,8 +120,19 @@ class AssemblyBase : public SubsystemBase {
virtual ReturnValue_t handleHealthReply(CommandMessage *message);
virtual void performChildOperation();
/**
* @brief Default periodic handler
* @details
* This is the default periodic handler which will be called by the SubsystemBase
* performOperation. It performs the child transitions or reacts to changed health/mode states
* of children objects
*/
virtual void performChildOperation() override;
/**
* This function handles changed mode or health states of children
* @return
*/
bool handleChildrenChanged();
/**