Navigation
API > API/Runtime > API/Runtime/Engine
Enum describing the success/failure of a task sync operation
| Name | UE::Tick::ESyncOperationResult |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Public/TaskSyncManager.h |
| Include Path | #include "TaskSyncManager.h" |
Syntax
namespace UE
{
namespace Tick
{
enum ESyncOperationResult
{
Invalid,
Success,
SyncPointInvalid,
SyncPointNotRegistered,
SyncPointNotFound,
SyncPointDisabled,
SyncPointStatusIncorrect,
EventTypeIncorrect,
ActivationRulesIncorrect,
BatchNotFound,
WorldNotFound,
ThreadIncorrect,
}
}
}
Values
| Name | Remarks |
|---|---|
| Invalid | Unknown or invalid status |
| Success | The requested operation was successful |
| SyncPointInvalid | The FSyncPointId is completely invalid |
| SyncPointNotRegistered | Sync point is not registered |
| SyncPointNotFound | Sync point does not exist for the specific batch |
| SyncPointDisabled | Sync point was specifically disabled |
| SyncPointStatusIncorrect | Sync Point status is incorrect for the requested operation, check the status |
| EventTypeIncorrect | The sync point's event type does not support this operation, such as trying to add a tick function to a simple event |
| ActivationRulesIncorrect | This is not supported for the sync point's activation rules |
| BatchNotFound | BatchContextId was not found |
| WorldNotFound | WorldContextId was not found |
| ThreadIncorrect | Operation called on incorrect thread or it cannot determine thread context |