Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FPushResult
Records the status of the push, negative values indicate an error, positive values indicate that the payload is stored in the target backend(s) and a zero value means that the operation has not yet run
| Name | EStatus |
| Type | enum |
| Header File | /Engine/Source/Runtime/Core/Public/Virtualization/VirtualizationSystem.h |
| Include Path | #include "Virtualization/VirtualizationSystem.h" |
Syntax
enum EStatus
{
Error = -5,
ProcessDisabled = -4,
NoBackend = -3,
Invalid = -2,
Filtered = -1,
Pending = 0,
AlreadyExisted = 1,
Pushed = 2,
}
Values
| Name | Remarks |
|---|---|
| Error | The push operation caused an error |
| ProcessDisabled | The push operation storage type is disabled |
| NoBackend | There were no backends that supported the push operation |
| Invalid | The push operation was run on an invalid payload id |
| Filtered | The payload was rejected by the filtering system |
| Pending | The push operation has not yet been run |
| AlreadyExisted | The payload was already present in the target backend(s) |
| Pushed | The payload was pushed to the backend(s) |