Navigation
API > API/Runtime > API/Runtime/BuildPatchServices
Enum describing download health. The actual percentage values used are configurable in the engine ini.
| Name | EBuildPatchDownloadHealth |
| Type | enum |
| Header File | /Engine/Source/Runtime/Online/BuildPatchServices/Public/Interfaces/IBuildInstaller.h |
| Include Path | #include "Interfaces/IBuildInstaller.h" |
Syntax
enum EBuildPatchDownloadHealth
{
Disconnected = 0,
Poor,
OK,
Good,
Excellent,
NUM_Values,
}
Values
| Name | Remarks |
|---|---|
| Disconnected | All requests are in the retrying state. No progress currently. Possibly disconnected. |
| Poor | More than 10% of requests are failing. |
| OK | 10% or fewer requests are failing. |
| Good | 1% or fewer requests are failing. |
| Excellent | No requests are failing. |
| NUM_Values | Must be last value, only used for value counts. |