File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
rclcpp/topics/minimal_subscriber Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,9 @@ This package contains a few different strategies for creating nodes which receiv
44 * ` lambda.cpp ` uses a C++11 lambda function
55 * ` member_function.cpp ` uses a C++ member function callback
66 * ` not_composable.cpp ` uses a global function callback without a Node subclass
7- * ` wait_set.cpp ` uses a ` rclcpp::WaitSet ` to wait and poll for data
8- * ` wait_set.cpp ` uses a ` rclcpp::StaticWaitSet ` to wait and poll for data
9- * ` wait_set_time_triggered.cpp ` uses a ` rclcpp::Waitset ` and a timer to poll
10- for data periodically
7+ * ` wait_set.cpp ` uses a ` rclcpp::WaitSet ` to wait and poll for data
8+ * ` static_wait_set.cpp ` uses a ` rclcpp::StaticWaitSet ` to wait and poll for data
9+ * ` wait_set_time_triggered.cpp ` uses a ` rclcpp::Waitset ` and a timer to poll for data periodically
1110
1211Note that ` not_composable.cpp ` instantiates a ` rclcpp::Node ` _ without_ subclassing it.
1312This was the typical usage model in ROS 1, but this style of coding is not compatible with composing multiple nodes into a single process.
You can’t perform that action at this time.
0 commit comments