Open
Conversation
|
Hi @nnarain, Is this PR still being worked on? |
Author
|
hey @frozenreboot Ya I should be able to get back to this. If I don't find the time this week I'll give you a ping. Hey @ct2034 any initial feedback on this PR? |
Timple
reviewed
Jan 3, 2026
| * the aggregator will report the error and publish it in the aggregated output. | ||
| */ | ||
| class Aggregator | ||
| class Aggregator : public rclcpp::Node |
Contributor
There was a problem hiding this comment.
This is not required for composable nodes.
Franky: I would advise against it. It's hard if you want this class as a member of another class.
This pr would be much smaller if you kept the node member and the logger member.
7ea3c1d to
933726f
Compare
933726f to
7e891e0
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Heya.
This PR makes the
diagnostic_aggregatornode composable (see #321 )Summary of changes:
Aggregatorclass implementget_node_base_interfaceso it can be registered as a componentrclcpp_componentAnalyzerGroupplugin as existing the analyzers library. When composing the nodes I found thatAnalyzerGroupwould not load. I assume it has worked up to this point because everything was linked into the same executable.