Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TFutureState
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TFutureState () |
Default constructor. | Async/Future.h | |
TFutureState
(
TUniqueFunction< void()>&& CompletionCallback |
Create and initialize a new instance with a callback. | Async/Future.h |
TFutureState()
Description
Default constructor.
| Name | TFutureState |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Async/Future.h |
| Include Path | #include "Async/Future.h" |
TFutureState()
TFutureState(TUniqueFunction< void()> &&)
Description
Create and initialize a new instance with a callback.
| Name | TFutureState |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Async/Future.h |
| Include Path | #include "Async/Future.h" |
TFutureState
(
TUniqueFunction < void> && CompletionCallback
)
Parameters
| Name | Remarks |
|---|---|
| CompletionCallback | A function that is called when the state is completed. |