onCapacity method

  1. @override
CacheEntry<K, V>? onCapacity(
  1. K key
)
override

removes the entry denoted by key. This is called if the capacity is reached.

Implementation

@override
CacheEntry<K, V>? onCapacity(K key) {
  return remove(key);
}