KvsEditor
interface KvsEditor
Builder for applying a batch of write operations to the store.
Call edit to obtain an instance, chain the desired mutations, then call commit to flush them atomically to the underlying storage.
Each mutation method returns this to support a fluent call chain:
kvs.edit()
.putString("theme", "dark")
.putBoolean("notifications", true)
.commit()Content copied to clipboard
See also
Functions
Link copied to clipboard
Link copied to clipboard
Stages the removal of ALL entries from the store.
Link copied to clipboard
Link copied to clipboard
Stages the removal of the entry identified by key.