Class AsyncParametersClient
Defined in File parameter_client.hpp
Class Documentation
-
class AsyncParametersClient
Public Functions
Create an async parameters client.
- Deprecated:
use rclcpp::QoS instead of rmw_qos_profile_t
- Parameters:
node_base_interface – [in] The node base interface of the corresponding node.
node_topics_interface – [in] Node topic base interface.
node_graph_interface – [in] The node graph interface of the corresponding node.
node_services_interface – [in] Node service interface.
remote_node_name – [in] Name of the remote node
qos_profile – [in] The rmw qos profile to use to subscribe
group – [in] (optional) The async parameter client will be added to this callback group.
Create an async parameters client.
- Parameters:
node_base_interface – [in] The node base interface of the corresponding node.
node_topics_interface – [in] Node topic base interface.
node_graph_interface – [in] The node graph interface of the corresponding node.
node_services_interface – [in] Node service interface.
remote_node_name – [in] (optional) name of the remote node
qos_profile – [in] (optional) The qos profile to use to subscribe
group – [in] (optional) The async parameter client will be added to this callback group.
Constructor.
- Deprecated:
use rclcpp::QoS instead of rmw_qos_profile_t
- Parameters:
node – [in] The async parameters client will be added to this node.
remote_node_name – [in] name of the remote node
qos_profile – [in] The rmw qos profile to use to subscribe
group – [in] (optional) The async parameter client will be added to this callback group.
- Parameters:
node – [in] The async parameters client will be added to this node.
remote_node_name – [in] (optional) name of the remote node
qos_profile – [in] (optional) The qos profile to use to subscribe
group – [in] (optional) The async parameter client will be added to this callback group.
Constructor.
- Deprecated:
use rclcpp::QoS instead of rmw_qos_profile_t
- Parameters:
node – [in] The async parameters client will be added to this node.
remote_node_name – [in] Name of the remote node
qos_profile – [in] The rmw qos profile to use to subscribe
group – [in] (optional) The async parameter client will be added to this callback group.
- Parameters:
node – [in] The async parameters client will be added to this node.
remote_node_name – [in] (optional) name of the remote node
qos_profile – [in] (optional) The qos profile to use to subscribe
group – [in] (optional) The async parameter client will be added to this callback group.
-
std::shared_future<std::vector<rcl_interfaces::msg::SetParametersResult>> delete_parameters(const std::vector<std::string> ¶meters_names)
Delete several parameters at once.
This function behaves like command-line tool
ros2 param delete
would.- Parameters:
parameters_names – vector of parameters names
- Returns:
the future of the set_parameter service used to delete the parameters
-
std::shared_future<std::vector<rcl_interfaces::msg::SetParametersResult>> load_parameters(const std::string &yaml_filename)
Load parameters from yaml file.
This function behaves like command-line tool
ros2 param load
would.- Parameters:
yaml_filename – the full name of the yaml file
- Returns:
the future of the set_parameter service used to load the parameters
-
std::shared_future<std::vector<rcl_interfaces::msg::SetParametersResult>> load_parameters(const rclcpp::ParameterMap ¶meter_map)
Load parameters from parameter map.
This function filters the parameters to be set based on the node name.
If two duplicate keys exist in node names belongs to one FQN, there is no guarantee which one could be set.
- Parameters:
parameter_map – named parameters to be loaded
- Throws:
InvalidParametersException – if there is no parameter to set
- Returns:
the future of the set_parameter service used to load the parameters
-
bool service_is_ready() const
Return if the parameter services are ready.
This method checks the following services:
get parameter
get parameter
set parameters
list parameters
describe parameters
- Returns:
true
if the service is ready,false
otherwise
-
template<typename RepT = int64_t, typename RatioT = std::milli>
inline bool wait_for_service(std::chrono::duration<RepT, RatioT> timeout = std::chrono::duration<RepT, RatioT>(-1)) Wait for the services to be ready.
- Parameters:
timeout – maximum time to wait
- Returns:
true
if the services are ready and the timeout is not over,false
otherwise
Public Static Functions
The NodeT type only needs to have a method called get_node_topics_interface() which returns a shared_ptr to a NodeTopicsInterface, or be a NodeTopicsInterface pointer itself.
Protected Functions
-
bool wait_for_service_nanoseconds(std::chrono::nanoseconds timeout)