eclipse-cyclonedds / cyclonedds-cxx

Other
96 stars 75 forks source link

Is there a function to apply QoS parameters as a file? #464

Open keepgoingxxx opened 10 months ago

keepgoingxxx commented 10 months ago

I'd like to apply Qos parameters at once. Is there a function to apply QoS parameters as a file? Or is there a way to configure QoS parameter set? If so, please provide a simple example code.

For example,

// qos_policy.json file 
{
 "some entity" : {
     "some qos policy" : "value"
  }
}

or

There seems to be a similar concept in ROS2 I think. https://github.com/ros2/rmw/blob/humble/rmw/include/rmw/qos_profiles.h

Thank you in advance.