@tempots/ui
AsyncResource interface
Represents an asynchronous resource with its current status, value, error, and loading state. Provides methods to reload the resource and dispose of it.
V - The type of the value when the resource is successfully loaded. E - The type of the error when the resource fails to load.
Signature:
export interface AsyncResource<V, E>
Properties
Property |
Modifiers |
Type |
Description |
---|---|---|---|
|
() => void |
Disposes of the resource, aborting any ongoing requests and cleaning up. | |
|
Signal<E | undefined> |
The current error of the resource, or undefined if not failed. | |
|
Signal<boolean> |
Whether the resource is currently loading. | |
|
() => void |
Reloads the resource using the current request. | |
|
Signal<AsyncResult<V, E>> |
The current status of the resource as an AsyncResult. | |
|
Signal<V | undefined> |
The current value of the resource, or undefined if not loaded or failed. |