findSpecificPublishers overloads
Declared in <balm_metricsmanager.h>
Append category-specific publishers for category to publishers.
int
findSpecificPublishers(
bsl::vector<Publisher*>* publishers,
Category const* category) const;
» more...
Append category-specific publishers for categoryName to publishers.
int
findSpecificPublishers(
bsl::vector<Publisher*>* publishers,
char const* categoryName) const;
» more...
Same as the preceding overload, using a std::pmr::vector result.
int
findSpecificPublishers(
std::pmr::vector<Publisher*>* publishers,
Category const* category) const;
» more...
Same as the preceding overload, using a std::pmr::vector result.
int
findSpecificPublishers(
std::pmr::vector<Publisher*>* publishers,
char const* categoryName) const;
» more...
Same as the preceding overload, using a std::vector result.
int
findSpecificPublishers(
std::vector<Publisher*>* publishers,
Category const* category) const;
» more...
Same as the preceding overload, using a std::vector result.
int
findSpecificPublishers(
std::vector<Publisher*>* publishers,
char const* categoryName) const;
» more...
category| Name | Description |
|---|---|
| publishers | receives addresses of category-specific publishers |
| category | category whose specific publishers are retrieved |
| categoryName | null-terminated category name |