Add rcl guard condition on_trigger_callback #966
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds the
on_trigger_callback
callback to rcl guard conditions.If the
on_trigger_callback
is set to a guard condition, it will be called every time the guard condition is triggered.If not, a counter will count the times the guard condiiton was triggered, and if eventually a callback is set it will use the counter as argument.
This PR is aligned to the recently added listener callbacks to the RMW entities (subscriptions, clients, services).
The motivation behind this PR, be able to wake up events driven executors (not relying on a wait set) when guard conditions are triggered. For example, a timer is reset after being cancelled, so it's inner guard condition is triggered and we can take actions to update the next trigger time for the timer.
Signed-off-by: Mauro Passerino mpasserino@irobot.com