Class IValueLoadingState<TData>Abstract

The base loading state

Type Parameters

  • TData

Hierarchy (view full)

Constructors

Properties

error$: Observable<Error>

Emits an error if one occurs

failed$: Observable<boolean>

Indicates if the actions has failed

isAsync: boolean

Indicates if the action was async or not

loading: boolean

Indicates the loading state of the command

loading$: Observable<boolean>

Indicates the loading state of the command

result$: Observable<TData>

The result of the action

resultAsync: Promise<TData>

A promise returning the data once resolved

Methods