ULimenAsyncInitializer
Overview
ULimenAsyncInitializer is an interface that defines a contract for classes to implement asynchronous initialization logic. It provides a blueprint-native event IsWorking which can be overridden by implementing classes to indicate whether the initialization process is currently active.
Properties
Type | Name | Access | Description |
|---|---|---|---|
bool | IsWorking() const | Public | Returns |
Functions
Return Type | Signature | Description |
|---|---|---|
bool | IsWorking() const | Returns |
Usage & Implementation Notes
Implementing classes must provide an implementation for the
IsWorking_Implementationmethod to define the logic that determines whether the initialization process is active.This interface can be used in conjunction with other components of the Limen Framework to manage asynchronous operations during level transitions or other critical processes.