Storage

interface Storage

This interface represents a storage mechanism for storing and retrieving key-value pairs.

Inheritors

Functions

Link copied to clipboard
abstract fun get(key: String): String?

Retrieves the value associated with the given key from the storage.

Link copied to clipboard
abstract fun remove(key: String)

Removes the value associated with the given key from the storage.

Link copied to clipboard
abstract fun set(key: String, content: Any)

Sets the value associated with the given key in the storage.