Navigation
API > API/Developer > API/Developer/AutomationDriver > API/Developer/AutomationDriver/Until
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static FDriverWaitDelegate Condition
(
const TFunction< bool()>& Function, |
Creates a new wait delegate which completes it's wait only if the specified condition returns true or if the specified timeout timespan elapses | WaitUntil.h | |
static FDriverWaitDelegate Condition
(
const FDriverWaitConditionDelegate& Delegate, |
Creates a new wait delegate which completes it's wait only if the specified condition returns true or if the specified timeout timespan elapses | WaitUntil.h | |
static FDriverWaitDelegate Condition
(
const TFunction< bool()>& Function, |
Creates a new wait delegate which completes it's wait only if the specified condition returns true or if the specified timeout timespan elapses The lambda is only re-evaluated at the specified wait interval | WaitUntil.h | |
static FDriverWaitDelegate Condition
(
const FDriverWaitConditionDelegate& Delegate, |
Creates a new wait delegate which completes it's wait only if the specified condition returns true or if the specified timeout timespan elapses The delegate is only re-evaluated at the specified wait interval | WaitUntil.h |
Condition(const TFunction< bool()> &, FWaitTimeout)
Description
Creates a new wait delegate which completes it's wait only if the specified condition returns true or if the specified timeout timespan elapses
| Name | Condition |
| Type | function |
| Header File | /Engine/Source/Developer/AutomationDriver/Public/WaitUntil.h |
| Include Path | #include "WaitUntil.h" |
| Source | /Engine/Source/Developer/AutomationDriver/Private/WaitUntil.cpp |
static FDriverWaitDelegate Condition
(
const TFunction< bool()> & Function,
FWaitTimeout Timeout
)
Condition(const FDriverWaitConditionDelegate &, FWaitTimeout)
Description
Creates a new wait delegate which completes it's wait only if the specified condition returns true or if the specified timeout timespan elapses
| Name | Condition |
| Type | function |
| Header File | /Engine/Source/Developer/AutomationDriver/Public/WaitUntil.h |
| Include Path | #include "WaitUntil.h" |
| Source | /Engine/Source/Developer/AutomationDriver/Private/WaitUntil.cpp |
static FDriverWaitDelegate Condition
(
const FDriverWaitConditionDelegate & Delegate,
FWaitTimeout Timeout
)
Condition(const TFunction< bool()> &, FWaitInterval, FWaitTimeout)
Description
Creates a new wait delegate which completes it's wait only if the specified condition returns true or if the specified timeout timespan elapses The lambda is only re-evaluated at the specified wait interval
| Name | Condition |
| Type | function |
| Header File | /Engine/Source/Developer/AutomationDriver/Public/WaitUntil.h |
| Include Path | #include "WaitUntil.h" |
| Source | /Engine/Source/Developer/AutomationDriver/Private/WaitUntil.cpp |
static FDriverWaitDelegate Condition
(
const TFunction< bool()> & Function,
FWaitInterval Interval,
FWaitTimeout Timeout
)
Condition(const FDriverWaitConditionDelegate &, FWaitInterval, FWaitTimeout)
Description
Creates a new wait delegate which completes it's wait only if the specified condition returns true or if the specified timeout timespan elapses The delegate is only re-evaluated at the specified wait interval
| Name | Condition |
| Type | function |
| Header File | /Engine/Source/Developer/AutomationDriver/Public/WaitUntil.h |
| Include Path | #include "WaitUntil.h" |
| Source | /Engine/Source/Developer/AutomationDriver/Private/WaitUntil.cpp |
static FDriverWaitDelegate Condition
(
const FDriverWaitConditionDelegate & Delegate,
FWaitInterval Interval,
FWaitTimeout Timeout
)