blob: 839fceb3c27f3347adfa3f720bb0d528bc6a7d96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/*
@VaadinApache2LicenseForJavaFiles@
*/
package com.vaadin.data.util.sqlcontainer;
import java.util.LinkedHashMap;
import java.util.Map;
/**
* CacheMap extends LinkedHashMap, adding the possibility to adjust maximum
* number of items. In SQLContainer this is used for RowItem -cache. Cache size
* will be two times the page length parameter of the container.
*/
class CacheMap<K, V> extends LinkedHashMap<K, V> {
private static final long serialVersionUID = 679999766473555231L;
private int cacheLimit = SQLContainer.CACHE_RATIO
* SQLContainer.DEFAULT_PAGE_LENGTH;
@Override
protected boolean removeEldestEntry(Map.Entry<K, V> eldest) {
return size() > cacheLimit;
}
void setCacheLimit(int limit) {
cacheLimit = limit > 0 ? limit : SQLContainer.DEFAULT_PAGE_LENGTH;
}
int getCacheLimit() {
return cacheLimit;
}
}
|