![]() |
UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
|
#include <DownloadService.h>
Inheritance diagram for BuildPatchServices::IDownloadServiceStat:Classes | |
| struct | FDownloadRecord |
Public Member Functions | |
| virtual | ~IDownloadServiceStat () |
| virtual void | OnDownloadStarted (int32 RequestId, const FString &Uri)=0 |
| virtual void | OnDownloadProgress (int32 RequestId, uint64 BytesReceived)=0 |
| virtual void | OnDownloadComplete (const FDownloadRecord &DownloadRecord)=0 |
This interface defines the statistics class required by the download service. It should be implemented in order to collect desired information which is being broadcast by the system.
|
inlinevirtual |
|
pure virtual |
Called for each request completion.
| DownloadRecord | The struct containing the stats for this request. |
Implemented in BuildPatchServices::FDownloadServiceStatistics.
|
pure virtual |
Called for each request completion.
| RequestId | The id for the request. |
| BytesReceived | The bytes received so far. |
Implemented in BuildPatchServices::FDownloadServiceStatistics.
|
pure virtual |
Called as each request has started.
| RequestId | The id for the request. |
| Uri | The uri for the request. |
Implemented in BuildPatchServices::FDownloadServiceStatistics.