Navigation
API > API/Runtime > API/Runtime/Core
Describes the status of a payload in regards to a backend storage system
| Name | UE::Virtualization::EPayloadStatus |
| Type | enum |
| Header File | /Engine/Source/Runtime/Core/Public/Virtualization/VirtualizationTypes.h |
| Include Path | #include "Virtualization/VirtualizationTypes.h" |
Syntax
namespace UE
{
namespace Virtualization
{
enum EPayloadStatus
{
Invalid = -1,
NotFound = 0,
FoundPartial,
FoundAll,
}
}
}
Values
| Name | Remarks |
|---|---|
| Invalid | The payload id was not value |
| NotFound | The payload was not found in any backend for the given storage type |
| FoundPartial | The payload was found in at least one backend but was not found in all backends available for the given storage type |
| FoundAll | The payload was found in all of the backends available for the given storage type |