enum EE::UI::WebResourceLoadState

Overview

Current lifecycle state of a cache entry. More…

#include <webresourcecache.hpp>

enum WebResourceLoadState: Uint8 {
    Empty,
    Loading,
    Ready,
    Failed,
    Cancelled,
};

Detailed Documentation

Current lifecycle state of a cache entry.

Enum Values

Empty

Entry exists but has not started loading.

Loading

One fetch is active; additional subscribers join it.

Ready

Resource completed successfully and is available for reuse.

Failed

Last fetch failed and remains subject to the retry delay.

Cancelled

Entry was cleared and any late fetch completion will be ignored.