MemoryStorage

A storage implementation that stores key-value pairs in memory.

Constructors

Link copied to clipboard
constructor()

Functions

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

Retrieves the value associated with the specified key.

Link copied to clipboard
open override fun remove(key: String)

Removes the key-value pair associated with the specified key from the storage.

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

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