15 #ifndef RCLCPP__NODE_INTERFACES__NODE_BASE_HPP_    16 #define RCLCPP__NODE_INTERFACES__NODE_BASE_HPP_    29 namespace node_interfaces
    52   rclcpp::context::Context::SharedPtr
    77   rclcpp::callback_group::CallbackGroup::SharedPtr
    82   rclcpp::callback_group::CallbackGroup::SharedPtr
   113   rclcpp::context::Context::SharedPtr context_;
   117   rclcpp::callback_group::CallbackGroup::SharedPtr default_callback_group_;
   120   std::atomic_bool associated_with_executor_;
   125   bool notify_guard_condition_is_valid_;
   131 #endif  // RCLCPP__NODE_INTERFACES__NODE_BASE_HPP_ virtual rclcpp::context::Context::SharedPtr get_context()
Return the context of the node. 
 
virtual const std::vector< rclcpp::callback_group::CallbackGroup::WeakPtr > & get_callback_groups() const
Return list of callback groups associated with this node. 
 
#define RCLCPP_DISABLE_COPY(...)
Definition: macros.hpp:26
 
#define RCLCPP_SMART_PTR_ALIASES_ONLY(...)
Definition: macros.hpp:66
 
CallbackGroupType
Definition: callback_group.hpp:43
 
Definition: allocator_common.hpp:24
 
virtual const char * get_name() const
Return the name of the node. 
 
rcl_guard_condition_t rcl_get_zero_initialized_guard_condition(void)
 
Implementation of the NodeBase part of the Node API. 
Definition: node_base.hpp:33
 
virtual std::unique_lock< std::recursive_mutex > acquire_notify_guard_condition_lock() const
Acquire and return a scoped lock that protects the notify guard condition. 
 
NodeBase(const std::string &node_name, rclcpp::context::Context::SharedPtr context)
 
virtual std::atomic_bool & get_associated_with_executor_atomic()
Return the atomic bool which is used to ensure only one executor is used. 
 
virtual std::shared_ptr< rcl_node_t > get_shared_rcl_node_handle()
Return the rcl_node_t node handle in a std::shared_ptr. 
 
virtual rcl_node_t * get_rcl_node_handle()
Return the rcl_node_t node handle (non-const version). 
 
#define RCLCPP_PUBLIC
Definition: visibility_control.hpp:50
 
Pure virtual interface class for the NodeBase part of the Node API. 
Definition: node_base_interface.hpp:36
 
virtual rclcpp::callback_group::CallbackGroup::SharedPtr get_default_callback_group()
Return the default callback group. 
 
virtual bool callback_group_in_node(rclcpp::callback_group::CallbackGroup::SharedPtr group)
Return true if the given callback group is associated with this node. 
 
virtual rcl_guard_condition_t * get_notify_guard_condition()
Return guard condition that should be notified when the internal node state changes. 
 
virtual rclcpp::callback_group::CallbackGroup::SharedPtr create_callback_group(rclcpp::callback_group::CallbackGroupType group_type)
Create and return a callback group.