delegate

private val delegate: Cache<K, LazyDeferred<V>>(source)

Note that the api surface is that of a Cache<K, V>, but this is using a LazyDeferred<V>. This allows all "loader" operations to be light-weight and non-recursive.

Since

0.12.0

See also