Package mondrian.rolap
Class SmartIncrementalCache<K,V extends Collection>
- java.lang.Object
-
- mondrian.rolap.SmartIncrementalCache<K,V>
-
public class SmartIncrementalCache<K,V extends Collection> extends Object
Uses a SmartCache to store a collection of values. Supplements put operations with an "addToEntry", which supports incrementally adding to the collection associated with key.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) SmartCache<K,V>cache
-
Constructor Summary
Constructors Constructor Description SmartIncrementalCache()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddToEntry(K key, V value)voidclear()Vget(K key)(package private) SmartCache<K,V>getCache()Vput(K key, V value)(package private) voidsetCache(SmartCache<K,V> cache)
-
-
-
Field Detail
-
cache
SmartCache<K,V extends Collection> cache
-
-