Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FTaskBase_1
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool AddPrerequisites
(
FTaskBase& Prerequisite |
The task will be executed only when all prerequisites are completed. | Tasks/TaskPrivate.h | |
bool AddPrerequisites
(
const HigherLevelTaskType& Prerequisite |
The task will be executed only when all prerequisites are completed. | Tasks/TaskPrivate.h | |
bool AddPrerequisites
(
const HigherLevelTaskType& Prerequisite |
The task will be executed only when all prerequisites are completed. | Tasks/TaskPrivate.h | |
void AddPrerequisites
(
const PrerequisiteCollectionType& InPrerequisites |
The task will be executed only when all prerequisites are completed. | Tasks/TaskPrivate.h | |
void AddPrerequisites
(
const PrerequisiteCollectionType& InPrerequisites, |
The task will be executed only when all prerequisites are completed. | Tasks/TaskPrivate.h |
AddPrerequisites(FTaskBase &)
Description
The task will be executed only when all prerequisites are completed. The task type must be a task handle that holds a pointer to FTaskBase as its `Pimpl_ member (see Tasks::TTaskBase). Must not be called concurrently
| Name | AddPrerequisites |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Tasks/TaskPrivate.h |
| Include Path | #include "Tasks/TaskPrivate.h" |
bool AddPrerequisites
(
FTaskBase & Prerequisite
)
AddPrerequisites(const HigherLevelTaskType &)
Description
The task will be executed only when all prerequisites are completed. The task type must be a task handle that holds a pointer to FTaskBase as its `Pimpl_ member (see Tasks::TTaskBase). Must not be called concurrently
| Name | AddPrerequisites |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Tasks/TaskPrivate.h |
| Include Path | #include "Tasks/TaskPrivate.h" |
template<typename HigherLevelTaskType, decltype(std::declval< HigherLevelTaskType >().Pimpl) *>
bool AddPrerequisites
(
const HigherLevelTaskType & Prerequisite
)
AddPrerequisites(const HigherLevelTaskType &)
Description
The task will be executed only when all prerequisites are completed. The task type must be a task handle that holds a pointer to Must not be called concurrently
| Name | AddPrerequisites |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Tasks/TaskPrivate.h |
| Include Path | #include "Tasks/TaskPrivate.h" |
template<typename HigherLevelTaskType, std::enable_if_t< std::is_same_v< HigherLevelTaskType, FGraphEventRef > > *>
bool AddPrerequisites
(
const HigherLevelTaskType & Prerequisite
)
AddPrerequisites(const PrerequisiteCollectionType &)
Description
The task will be executed only when all prerequisites are completed. Must not be called concurrently.
| Name | AddPrerequisites |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Tasks/TaskPrivate.h |
| Include Path | #include "Tasks/TaskPrivate.h" |
template<typename PrerequisiteCollectionType, decltype(std::declval< PrerequisiteCollectionType >().begin()) *>
void AddPrerequisites
(
const PrerequisiteCollectionType & InPrerequisites
)
Parameters
| Name | Remarks |
|---|---|
| InPrerequisites | an iterable collection of tasks |
AddPrerequisites(const PrerequisiteCollectionType &, bool)
Description
The task will be executed only when all prerequisites are completed. Must not be called concurrently.
| Name | AddPrerequisites |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Tasks/TaskPrivate.h |
| Include Path | #include "Tasks/TaskPrivate.h" |
template<typename PrerequisiteCollectionType, decltype(std::declval< PrerequisiteCollectionType >().begin()) *>
void AddPrerequisites
(
const PrerequisiteCollectionType & InPrerequisites,
bool bLockPrerequisite
)
Parameters
| Name | Remarks |
|---|---|
| InPrerequisites | an iterable collection of tasks |