CloudStorage

external interface CloudStorage

Functions

Link copied to clipboard
fun CloudStorage.get(keys: Array<String>, callback: (result: Result<Array<CloudStorageValue>>) -> Unit): CloudStorage
fun CloudStorage.get(key: String, callback: (result: Result<CloudStorageValue>) -> Unit): CloudStorage
fun CloudStorage.get(key: String, key2: String, vararg otherKeys: String, callback: (result: Result<Array<CloudStorageValue>>) -> Unit): CloudStorage
Link copied to clipboard
Link copied to clipboard
abstract fun getItem(key: CloudStorageKey, callback: (e: Any?, value: CloudStorageValue?) -> Unit): CloudStorage
Link copied to clipboard
abstract fun getItems(key: Array<CloudStorageKey>, callback: (e: Any?, values: Array<CloudStorageValue>?) -> Unit): CloudStorage
Link copied to clipboard
abstract fun getKeys(callback: (e: Any?, success: Array<CloudStorageKey>?) -> Unit): CloudStorage
Link copied to clipboard
Link copied to clipboard
fun CloudStorage.remove(key: CloudStorageKey, callback: (result: Result<Boolean>) -> Unit): CloudStorage
fun CloudStorage.remove(keys: Array<CloudStorageKey>, callback: (result: Result<Boolean>) -> Unit): CloudStorage
fun CloudStorage.remove(keys: Array<String>, callback: (result: Result<Boolean>) -> Unit): CloudStorage
fun CloudStorage.remove(key: String, callback: (result: Result<Boolean>) -> Unit): CloudStorage
fun CloudStorage.remove(key: String, key2: String, vararg otherKeys: String, callback: (result: Result<Boolean>) -> Unit): CloudStorage
Link copied to clipboard
abstract fun removeItem(key: CloudStorageKey, callback: (e: Any?, success: Boolean?) -> Unit): CloudStorage
Link copied to clipboard
abstract fun removeItems(key: Array<CloudStorageKey>, callback: (e: Any?, success: Boolean?) -> Unit): CloudStorage
Link copied to clipboard
fun CloudStorage.set(key: String, value: String, callback: (result: Result<Boolean>) -> Unit = {}): CloudStorage
Link copied to clipboard
abstract fun setItem(key: CloudStorageKey, value: CloudStorageValue, callback: (e: Any?, success: Boolean?) -> Unit = definedExternally): CloudStorage