CacheEntry

data class CacheEntry<V : Any>(val value: V, val timestamp: Long)

A cached value together with the epoch-millisecond timestamp it was stored at.

Constructors

Link copied to clipboard
constructor(value: V, timestamp: Long)

Properties

Link copied to clipboard
Link copied to clipboard
val value: V