CacheKey

value class CacheKey(val key: String)

A CacheKey identifies an object in the cache.

Constructors

Link copied to clipboard
constructor(key: String)
constructor(typename: String, values: List<String>)

Builds a CacheKey from a typename and a list of Strings.

constructor(typename: String, vararg values: String)

Builds a CacheKey from a typename and a list of Strings.

constructor(values: List<String>)

Types

Link copied to clipboard
object Companion
Link copied to clipboard

Properties

Link copied to clipboard
val key: String

The key of the object in the cache.

Functions

Link copied to clipboard
open override fun toString(): String