Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Async > API/Runtime/Core/Async/FBaseGraphTask
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Async/TaskGraphInterfaces.h |
| Include | #include "Async/TaskGraphInterfaces.h" |
void PrerequisitesComplete
(
ENamedThreads::Type CurrentThread,
int32 NumAlreadyFinishedPrequistes,
bool bUnlock
)
Remarks
Indicates that the prerequisites are set up and that the task can be executed as soon as the prerequisites are finished.
Parameters
| Name | Description |
|---|---|
| NumAlreadyFinishedPrequistes; | the number of prerequisites that have not been set up because those tasks had already completed. |
| bUnlock; | if true, let the task execute if it can |