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