Navigation
API > API/Runtime > API/Runtime/EventLoop
Copyright Epic Games, Inc. All Rights Reserved.
| Name | UE::EventLoop::ETimerStatus |
| Type | enum |
| Header File | /Engine/Source/Runtime/Online/Experimental/EventLoop/Public/EventLoop/EventLoopTimer.h |
| Include Path | #include "EventLoop/EventLoopTimer.h" |
Syntax
namespace UE
{
namespace EventLoop
{
enum ETimerStatus
{
Pending,
Active,
PendingRemoval,
PendingReschedule,
Executing,
}
}
}
Values
| Name | Remarks |
|---|---|
| Pending | Timer has been queued, but has not started running yet. |
| Active | Timer is active and will be triggered once its expiration elapses in Tick. |
| PendingRemoval | Timer will be removed during the next tick. |
| PendingReschedule | Timer will be rescheduled during the next tick. |
| Executing | The timer has elapsed and its callback is executing. |