Package-level declarations
Functions
App-global, in-memory flat key-value store, shared across every screen for the app process's lifetime (not persisted).
App-global, in-memory segmented store under segmentId, shared across every screen for the app process's lifetime (not persisted).
Reads (or writes) a specific set of keys from the data source, returned as a map keyed by dataIds.
Reads (or writes) every value held by the data source, returned as a full map.
A literal set of key-value pairs baked into the event itself — not a real store, just static data to read.
A literal map of values baked into the event itself — not a real store, just static data to read.
Persistent (SQLite-backed) flat key-value store, surviving app restarts.
Read-only data passed into the current screen via Navigate.
In-memory flat key-value store scoped to the current screen's ViewModel — cleared when the screen is left.
In-memory segmented store under segmentId, scoped to the current screen's ViewModel — cleared when the screen is left.
Reads (or writes) exactly one key, identified by dataId, from the data source.