LoadStatus

sealed class LoadStatus

The load status for the object. This is used to determine the status of an object that is Loadable.

Since

200.0.0

Inheritors

Types

Link copied to clipboard
data class FailedToLoad(val error: Throwable) : LoadStatus

The object failed to load and some functionality may not work.

Link copied to clipboard

The object is fully loaded and ready to use.

Link copied to clipboard

The object is currently being loaded and some functionality may not work.

Link copied to clipboard

The object is not loaded and some functionality may not work.

Properties

Link copied to clipboard

True if the loadable's LoadStatus value is Loaded or FailedToLoad.

Functions

Link copied to clipboard
open override fun toString(): String