Function rcl_count_clients
Defined in File graph.h
Function Documentation
-
rcl_ret_t rcl_count_clients(const rcl_node_t *node, const char *service_name, size_t *count)
Return the number of clients on a given service.
The
node
parameter must point to a valid node.The
service_name
parameter must not beNULL
, and must not be an empty string. It should also follow the service name rules.See: https://design.ros2.org/articles/topic_and_service_names.html
The
count
parameter must point to a valid size_t. Thecount
parameter is the output for this function and will be set.In the event that error handling needs to allocate memory, this function will try to use the node’s allocator.
The service name is not automatically remapped by this function. If there is a client created with service name
foo
and remap rulefoo:=bar
then calling this withservice_name
set tobar
will return a count of 1, and withservice_name
set tofoo
will return a count of 0. /sa rcl_remap_service_name()Attribute
Adherence
Allocates Memory
Yes
Thread-Safe
No
Uses Atomics
No
Lock-Free
Maybe [1]
- Parameters:
node – [in] the handle to the node being used to query the ROS graph
service_name – [in] the name of the service in question
count – [out] number of clients on the given service
- Returns:
RCL_RET_OK if the query was successful, or
- Returns:
RCL_RET_NODE_INVALID if the node is invalid, or
- Returns:
RCL_RET_INVALID_ARGUMENT if any arguments are invalid, or
- Returns:
RCL_RET_ERROR if an unspecified error occurs.