ReactiveState
The lifecycle state of a ReactiveStreamStore as a single snapshot.
idle: the store has not yet been connected, or has been reset via `reset()`. Call `connect()` to open the underlying stream.loading: a first connection is in progress; no data has arrived yet.loaded: a value has been received and no error is active.error: the stream failed.dataholds the last known value (orundefinedif none ever arrived) anderrorholds the failure.retrying: a follow-upconnect()is in progress after a previous outcome.erroris cleared;datais preserved from the previous connection if any.
Type Parameters
| Type Parameter |
|---|
T |