Navigation
API > API/Runtime > API/Runtime/VerseCompiler
Indicates whether an expression should return immediately - such as functions, after a duration (including immediately) such as coroutines or either.
| Name | uLang::EInvokeTime |
| Type | enum |
| Header File | /Engine/Source/Runtime/VerseCompiler/Public/uLang/Semantics/Expression.h |
| Include Path | #include "uLang/Semantics/Expression.h" |
Syntax
namespace uLang
{
enum EInvokeTime
{
Immediate = 1 << 0,
Async = 1 << 1,
Any_ = Immediate | Async,
}
}
Values
| Name | Remarks |
|---|---|
| Immediate | |
| Async | |
| Any_ |