LruCacheMemory constructor

LruCacheMemory(
  1. int maxSize
)

Constructs an LruCacheMemory with the specified maxSize in bytes.

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

Implementation

LruCacheMemory(int maxSize) : super(maxSize);