Aborts and rolls back the transaction.
Commits the transaction.
Deletes the data at the given key.
The key to delete from the store.
Retrieves the data at the given key. Throws an ApiError if an error occurs or if the key does not exist.
The key to look under for data.
The data stored under the key, or undefined if not present.
Adds the data to the store under the given key.
The key to add the data under.
The data to add to the store.
If 'true', overwrite any existing data. If 'false', avoids storing the data if the key exists.
True if storage succeeded, false otherwise.
Generated using TypeDoc
A read-write transaction for a synchronous key value store.