ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

The call to get_parameters may take one or more parameter names. Check out this demo where multiple parameters are requested in a single service call:

parameters_client->get_parameters({"foo", "baz", "foobarbaz", "toto"});

Also note, the type of the future argument in the callback is a vector of parameters. This vector should contain all of the parameters requested.

Hopefully this answers your question.