CacheKey

class CacheKey(val key: String)

A CacheKey identifies an object in the cache.

Parameters

key

The key of the object in the cache. The key must be globally unique.

Constructors

Link copied to clipboard
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(key: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val key: String

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
Link copied to clipboard
open override fun toString(): String