-
Notifications
You must be signed in to change notification settings - Fork 37
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
feat: enhance destroy_subscribers behavior #499
Conversation
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.
LGTM and makes sense - good job; I have some comments regarding docstring for ARIConnector, merge after applying them.
Whether to destroy subscribers after receiving a message, by default False. | ||
If True, the subscriber will be destroyed after the message is received. | ||
If False, may lead to performance issues due to unneded subscribers. | ||
It has been observed that destroying subscribers may lead to a crash of the node/executor. |
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.
I think this line should be moved to notes and expanded upon. "It has been observed.... may", do you know anything more about this behaviour?
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.
Expanded note
_node : Node | ||
The ROS2 node instance. | ||
_topic_api : ROS2TopicAPI | ||
API for handling ROS2 topic operations. | ||
_service_api : ROS2ServiceAPI | ||
API for handling ROS2 service operations. | ||
_actions_api : ROS2ActionAPI | ||
API for handling ROS2 action operations. | ||
_tf_buffer : Buffer | ||
Buffer for storing TF transforms. | ||
tf_listener : TransformListener | ||
Listener for TF transforms. | ||
_executor : MultiThreadedExecutor | ||
ROS2 executor for running the node. | ||
_thread : Thread | ||
Thread running the executor. |
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.
_node : Node | |
The ROS2 node instance. | |
_topic_api : ROS2TopicAPI | |
API for handling ROS2 topic operations. | |
_service_api : ROS2ServiceAPI | |
API for handling ROS2 service operations. | |
_actions_api : ROS2ActionAPI | |
API for handling ROS2 action operations. | |
_tf_buffer : Buffer | |
Buffer for storing TF transforms. | |
tf_listener : TransformListener | |
Listener for TF transforms. | |
_executor : MultiThreadedExecutor | |
ROS2 executor for running the node. | |
_thread : Thread | |
Thread running the executor. | |
tf_listener : TransformListener | |
Listener for TF transforms. |
Protected and private Attributes should not be listed in the docstring documenting the classes public API. If any of these should become part of the public API please remove the _
prefix.
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.
renamed tf_listener, to _tf_listener, as there is no need to expose the listener.
removed Attributes section of the docstring
Purpose
Sometimes, destroying the subscribers lead to crash of the node/executor. An effort has ben made to allow persistent subscribers.
Proposed Changes
Enhances the logic behind handling destroy_subscribers in ROS2TopicAPI
ROS2ARIConnector docstring
Issues
Testing