Navigation
API > API/Runtime > API/Runtime/Engine
References
| Module | Engine |
| Header | /Engine/Source/Runtime/Engine/Public/TimerManager.h |
| Include | #include "TimerManager.h" |
Syntax
struct FTimerUnifiedDelegate
Remarks
Simple interface to wrap a timer delegate that can be either native or dynamic.
Variables
| Type | Name | Description | |
|---|---|---|---|
| TFunction< void(void)> | FuncCallback | Holds the TFunction callback to call. | |
| FTimerDelegate | FuncDelegate | Holds the delegate to call. | |
| FTimerDynamicDelegate | FuncDynDelegate | Holds the dynamic delegate to call. |
Constructors
| Type | Name | Description | |
|---|---|---|---|
FTimerUnifiedDelegate
(
FTimerDelegate const& D |
|||
FTimerUnifiedDelegate
(
FTimerDynamicDelegate const& D |
|||
FTimerUnifiedDelegate
(
TFunction< void(void)>&& Callback |
|||
| Movable only. | |||
FTimerUnifiedDelegate
(
const FTimerUnifiedDelegate& |
Functions
| Type | Name | Description | |
|---|---|---|---|
| void | Execute () |
||
| const void * | |||
| bool | IsBound () |
||
| FString | ToString () |
Utility to output info about delegate as a string. | |
| void | Unbind () |
Operators
| Type | Name | Description | |
|---|---|---|---|
| FTimerUnifiedDelegate & | |||
| FTimerUnifiedDelegate & | operator=
(
const FTimerUnifiedDelegate& |