Removes all of the entries from persistent storage.
Checks if the data for the key exists.
The key to check.
true
if data for the key exists, or false otherwise.Retrieves a collection of all of the values in persistent storage.
Retieves the data for the key.
The key.
Removes the data for the key.
The key to remove.
Promise resolved with true
if data have been removed, or false otherwise.
Saves the data under the key in persistent storage. If the key
already exists, throws StorageEntryAlreadyExistsError.
The key.
The data.
Sets the new data for the key.
The key to update.
The new data.
Interface to be implemented by objects capable of storing binary data in persistent storage.