-
Notifications
You must be signed in to change notification settings - Fork 435
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
added wait method to AsyncParametersClient #342
Conversation
@BrannonKing FYI |
I fixed the usage of the visibility macros in 16be382 |
The visibility macros set the attributes for dllexport / dllimport depending if the function is being built at compile time of the package or later being used from other code through the header declaration. Since the templated function are header only and are only expanded when actually being used they never end up in the built library of the package containing the declaration and therefore don't need the attributes. |
69165ee
to
967a3eb
Compare
967a3eb
to
a51d585
Compare
@ros2/team Waiting for review. |
Thanks. |
added wait method to AsyncParametersClient (ros2#342)
* rcl_action_expire_goals() outputs goals that expire
* add filter for selecting topics to read Signed-off-by: Mabel Zhang <mabel@openrobotics.org> * add StorageFilter Signed-off-by: Mabel Zhang <mabel@openrobotics.org> * add safety check for storage pointer; add reset_filter Signed-off-by: Mabel Zhang <mabel@openrobotics.org> * add set_filter and reset_filter to Reader Signed-off-by: Mabel Zhang <mabel@openrobotics.org> * fix mock sequential reader for rosbag2_transport test Signed-off-by: Mabel Zhang <mabel@openrobotics.org> * add topic filter to transport play options Signed-off-by: Mabel Zhang <mabel@openrobotics.org> * add selective topics to cmd line Signed-off-by: Mabel Zhang <mabel@openrobotics.org> * fix cpplint Signed-off-by: Mabel Zhang <mabel@openrobotics.org> * end to end read test Signed-off-by: Mabel Zhang <mabel@openrobotics.org> * fix cmd line args Signed-off-by: Mabel Zhang <mabel@openrobotics.org> * add play end to end test for filter topic Signed-off-by: Mabel Zhang <mabel@openrobotics.org> * remove read test Signed-off-by: Mabel Zhang <mabel@openrobotics.org> * remove read test in CMakeList Signed-off-by: Mabel Zhang <mabel@openrobotics.org> * fix flake8 Signed-off-by: Mabel Zhang <mabel@openrobotics.org> * address PR comments Signed-off-by: Mabel Zhang <mabel@openrobotics.org> * revert rosbag2_cpp Reader Signed-off-by: Mabel Zhang <mabel@openrobotics.org> * unrevert rosbag2_cpp Reader Signed-off-by: Mabel Zhang <mabel@openrobotics.org> * address PR comments Signed-off-by: Mabel Zhang <mabel@openrobotics.org> * vector initialization Signed-off-by: Mabel Zhang <mabel@openrobotics.org> * remove line break Signed-off-by: Mabel Zhang <mabel@openrobotics.org> * fix merge errors Signed-off-by: Mabel Zhang <mabel@openrobotics.org> * style Signed-off-by: Mabel Zhang <mabel@openrobotics.org> * alpha order Signed-off-by: Mabel Zhang <mabel@openrobotics.org>
Rebased version of #337.