Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FTaskBase_1
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Waits until the task is completed or waiting timed out, while executing other tasks | Tasks/TaskPrivate.h | ||
bool BusyWait
(
ConditionType&& Condition |
Waits until the task is completed or the condition returns true, while executing other tasks | Tasks/TaskPrivate.h |
BusyWait(FTimeout)
Description
Waits until the task is completed or waiting timed out, while executing other tasks
| Name | BusyWait |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Tasks/TaskPrivate.h |
| Include Path | #include "Tasks/TaskPrivate.h" |
bool BusyWait
(
FTimeout Timeout
)
BusyWait(ConditionType &&)
Description
Waits until the task is completed or the condition returns true, while executing other tasks
| Name | BusyWait |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Tasks/TaskPrivate.h |
| Include Path | #include "Tasks/TaskPrivate.h" |
template<typename ConditionType>
bool BusyWait
(
ConditionType && Condition
)