registerCollectionCallback overloads
Declared in <balm_metricsmanager.h>
Register a callback to collect records for the specified category.
CallbackHandle
registerCollectionCallback(
Category const* category,
RecordsCollectionCallback const& callback);
» more...
Register a callback to collect records for the named category.
MetricsManager::CallbackHandle
registerCollectionCallback(
char const* categoryName,
RecordsCollectionCallback const& callback);
» more...
opaque integer handle that can be used later to remove the callback
| Name | Description |
|---|---|
| category | category for which to register the callback |
| callback | callback invoked to collect records for category |
| categoryName | null-terminated category name |