forked from ros2/rclcpp
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rclcpp QoS implementation #2
Merged
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
065a966
Add interfaces for events in memory_strategy
ross-desmond 6ddded4
refactor waitables
mm318 a078e8e
add event callbacks to publisher, subscriber, client, service
mm318 1a4ccaa
fix some ros2 build issues
mm318 e1ad5c2
update client-facing API
mm318 cc8bb54
improve usability of the SubscriptionOptions and PublisherOptions cla…
mm318 afca6f4
Attempt to fix cppcheck (#646)
sloretz ec4476e
Add a method to the LifecycleNode class to get the logging interface …
40ba3c6
update to use separated action types (#601)
hidmic 6821fa6
Add Doxyfile for rclcpp_action
jacobperron b7cdf8f
Add documentation to rclcpp_action
jacobperron 22a6484
Don't hardcode int64_t for duration type representations (#648)
emersonknapp 80e3d48
Fix test_time_source test (#639)
pbaughman bcabadc
fix lint errors
mm318 993788f
apply uncrustify
mm318 a77d110
fix wait for service memory leak bug (#656)
mm318 8d94f1b
Merge remote-tracking branch 'upstream/master' into qos
43f891d
add section about DCO to CONTRIBUTING.md
dirk-thomas 787fa6f
update for rcl API changes
mm318 71ba5f3
Fix lint and build warnings and API inconsistency
0a44344
Avoid race that triggers timer too often (#621)
durko 2462a94
Back out Waitable and GraphEvent-related changes
142b4d6
add publisher and subscription events to AllocatorMemoryStrategy
mm318 42b7cbe
Add stub API for assert_liveliness
b352d45
Fix use_sim_time issue on LifeCycleNode (#651)
vinnamkim ad2ba8d
revert changes to client and services
mm318 cb20529
Add parameter-related templates to LifecycleNode (#645)
vinnamkim 80bcf2f
update API calls into rcl
mm318 4f2f8de
fix linter errors in rclcpp_lifecycle (#672)
Karsten1987 d8502a7
Merge remote-tracking branch 'origin/master' into qos-min
mm318 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
reminder: restore pre-existing
create_publisher
andcreate_subscriber
APIs, and mark as deprecatedThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@emersonknapp Will you be carving out the
PublisherOptions
/SubscriptionOptions
PR? Can you restore the to-be-deprecated APIs as part of that? I want to leave them out here so that uses of the to-be-deprecated APIs will error out instead of just producing some warnings.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I am working on that today - once that's ready we can rebase this review onto that branch