Navigation
API > API/Runtime > API/Runtime/BuildPatchServices
An enum defining the desired policy for requesting an optimised delta.
| Name | BuildPatchServices::EDeltaPolicy |
| Type | enum |
| Header File | /Engine/Source/Runtime/Online/BuildPatchServices/Public/BuildPatchDelta.h |
| Include Path | #include "BuildPatchDelta.h" |
Syntax
namespace BuildPatchServices
{
enum EDeltaPolicy
{
TryFetchContinueWithout = 0,
Expect,
Skip,
InvalidOrMax,
}
}
Values
| Name | Remarks |
|---|---|
| TryFetchContinueWithout | Try to fetch, but continue without if request fail. |
| Expect | Expect the delta to exist, hard fail the installation if it could not be retrieved. |
| Skip | Expect the delta to not exist, skipping any attempt to use one. |
| InvalidOrMax |