suspend fun put(value: V): Unit
Convenience method to put a record directly
value - the value to store
value
suspend fun put(key: K, value: V): Unit
Puts data into the store.
key - The key to associate with the data, for use when retrieving.
key
value - The data to store.