diff --git a/rmw_zenoh_cpp/src/detail/liveliness_utils.cpp b/rmw_zenoh_cpp/src/detail/liveliness_utils.cpp index 7fae66f8..971b19ec 100644 --- a/rmw_zenoh_cpp/src/detail/liveliness_utils.cpp +++ b/rmw_zenoh_cpp/src/detail/liveliness_utils.cpp @@ -120,17 +120,21 @@ Entity::Entity( * * The liveliness token keyexprs are in the form: * - * //// + * ///// * * Where: * - A number set by the user to "partition" graphs. Roughly equivalent to the domain ID in DDS. + * - A unique ID to identify this entity. Currently the id is the zenoh session's id with elements concatenated into a string using '.' as separator. * - The type of entity. This can be one of "NN" for a node, "MP" for a publisher, "MS" for a subscription, "SS" for a service server, or "SC" for a service client. * - The ROS namespace for this entity. If the namespace is absolute, this function will add in an _ for later parsing reasons. * - The ROS node name for this entity. * * For entities with topic infomation, the liveliness token keyexpr have additional fields: * - * /////// + * //////// + * - The ROS topic name for this entity. + * - The type for the topic. + * - The qos for the topic. */ std::stringstream token_ss; const std::string & ns = node_info_.ns_;