LruCacheStorage constructor

LruCacheStorage(
  1. int maxSize
)

Constructs an LruCacheStorage with the specified maxSize in bytes.

Throws an assertion error if maxSize is not greater than 0.

Implementation

LruCacheStorage(int maxSize) : super(maxSize);