Navigation
API > API/Runtime > API/Runtime/TelemetryUtils > API/Runtime/TelemetryUtils/FTelemetryRouter
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FDelegateHandle OnTelemetry
(
TDelegate< void(const DATA_TYPE&)> Sink |
Registers a delegate as callback to receive telemetry of a certain type. | TelemetryRouter.h | |
FDelegateHandle OnTelemetry
(
CALLABLE&& Sink |
Registers a callable object as a callback receive telemetry of a certain type. | TelemetryRouter.h |
OnTelemetry(TDelegate< void(const DATA_TYPE &)>)
Description
Registers a delegate as callback to receive telemetry of a certain type.
| Name | OnTelemetry |
| Type | function |
| Header File | /Engine/Source/Runtime/Analytics/TelemetryUtils/Public/TelemetryRouter.h |
| Include Path | #include "TelemetryRouter.h" |
template<typename DATA_TYPE>
FDelegateHandle OnTelemetry
(
TDelegate < void> Sink
)
a handle that can be used to unregister this sink later so it is no longer called.
OnTelemetry(CALLABLE &&)
Description
Registers a callable object as a callback receive telemetry of a certain type.
| Name | OnTelemetry |
| Type | function |
| Header File | /Engine/Source/Runtime/Analytics/TelemetryUtils/Public/TelemetryRouter.h |
| Include Path | #include "TelemetryRouter.h" |
template<typename DATA_TYPE, typename CALLABLE, typename>
FDelegateHandle OnTelemetry
(
CALLABLE && Sink
)
a handle that can be used to unregister this sink later so it is no longer called.