Navigation
API > API/Plugins > API/Plugins/Hotfix
Various states the update manager flows through as it checks for patches/hotfixes
| Name | EUpdateState |
| Type | enum |
| Header File | /Engine/Plugins/Online/OnlineFramework/Source/Hotfix/Public/UpdateManager.h |
| Include Path | #include "UpdateManager.h" |
Syntax
enum EUpdateState
{
UpdateIdle,
UpdatePending,
CheckingForPatch,
CheckingForHotfix,
WaitingOnInitialLoad,
InitialLoadComplete,
UpdateComplete,
}
Values
| Name | Remarks |
|---|---|
| UpdateIdle | No updates in progress |
| UpdatePending | An update is waiting to be triggered at the right time |
| CheckingForPatch | Checking for an available patch |
| CheckingForHotfix | Checking with hotfix for available updates |
| WaitingOnInitialLoad | Waiting for the async loading / preloading to complete |
| InitialLoadComplete | Preloading complete |
| UpdateComplete | Last update check completed successfully |