![]() |
UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
|
#include <Verifier.h>
Inheritance diagram for BuildPatchServices::IVerifierStat:Public Member Functions | |
| virtual | ~IVerifierStat () |
| virtual void | OnFileStarted (const FString &Filename, int64 FileSize)=0 |
| virtual void | OnFileProgress (const FString &Filename, int64 TotalBytes)=0 |
| virtual void | OnFileCompleted (const FString &Filename, EVerifyResult VerifyResult)=0 |
| virtual void | OnFileRead (const ISpeedRecorder::FRecord &Record)=0 |
| virtual void | OnProcessedDataUpdated (int64 TotalBytes)=0 |
| virtual void | OnTotalRequiredUpdated (int64 TotalBytes)=0 |
This interface defines the statistics class required by the verifier system. It should be implemented in order to collect desired information which is being broadcast by the system.
|
inlinevirtual |
|
pure virtual |
Called each time a file has finished being verified.
| Filename | The filename of the file. |
| VerifyResult | The result of the file's verify test. |
Implemented in BuildPatchServices::FVerifierStatistics.
|
pure virtual |
Called during a file verification with the current progress.
| Filename | The filename of the file. |
| TotalBytes | The number of bytes processed so far. |
Implemented in BuildPatchServices::FVerifierStatistics.
|
pure virtual |
Called each time a read operation is made.
| Record | The details for the operation. |
Implemented in BuildPatchServices::FVerifierStatistics.
|
pure virtual |
Called each time a file is going to be verified.
| Filename | The filename of the file. |
| FileSize | The size of the file being verified. |
Implemented in BuildPatchServices::FVerifierStatistics.
|
pure virtual |
Called to update the total amount of bytes which have been processed.
| TotalBytes | The number of bytes processed so far. |
Implemented in BuildPatchServices::FVerifierStatistics.
|
pure virtual |
Called to update the total number of bytes to be processed.
| TotalBytes | The total number of bytes to be processed. |
Implemented in BuildPatchServices::FVerifierStatistics.