Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Async
Inheritance Hierarchy
- TFutureBase
- TSharedFuture< void >
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Async/Future.h |
| Include | #include "Async/Future.h" |
Syntax
template<>
class TSharedFuture< void > : public TFutureBase< int >
Remarks
Template for shared futures (specialization for void).
Functions
| Type | Name | Description | |
|---|---|---|---|
| Destructor. | |||
| void | Get () |
Gets the future's result. | |
| Default constructor. | |||
TSharedFuture
(
const BaseType::StateType& InState |
Creates and initializes a new instance from shared state. | ||
TSharedFuture
(
TFuture< void >&& Future |
Creates and initializes a new instances from a future object. | ||
TSharedFuture
(
const TSharedFuture& |
Copy constructor. | ||
TSharedFuture
(
TSharedFuture&& |
Move constructor. |
Operators
| Type | Name | Description | |
|---|---|---|---|
| TSharedFuture & | operator=
(
const TSharedFuture& Other |
Copy assignment operator. | |
| TSharedFuture & | operator=
(
TSharedFuture&& Other |
Move assignment operator. |
Typedefs
| Name | Description |
|---|---|
| BaseType |