StorageService

interface StorageService

Functions

Link copied to clipboard
abstract fun deleteData(storeName: String, key: String)

Deletes data from the storage service.

Link copied to clipboard
abstract fun getData(storeName: String, key: String): CompletableFuture<Any?>

Retrieves data from the storage service.

Link copied to clipboard
abstract fun getDataSync(storeName: String, key: String): Any?

Retrieves data from the storage service synchronously.

Link copied to clipboard
abstract fun saveData(storeName: String, key: String, value: Any)

Saves data to the storage service.