LruCacheStorage constructor
LruCacheStorage(
- 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);