Uses of Class
org.h2.util.CacheObject
Packages that use CacheObject
-
Uses of CacheObject in org.h2.util
Subclasses of CacheObject in org.h2.utilFields in org.h2.util declared as CacheObjectModifier and TypeFieldDescriptionCacheObject.cacheChainedThe next element in the hash chain.CacheObject.cacheNextThe next element in the LRU linked list.CacheObject.cachePreviousThe previous element in the LRU linked list.private final CacheObjectCacheLRU.headprivate CacheObject[]CacheLRU.valuesFields in org.h2.util with type parameters of type CacheObjectMethods in org.h2.util that return CacheObjectModifier and TypeMethodDescriptionCache.find(int pos) Get an element from the cache if it is available.CacheLRU.find(int pos) CacheSecondLevel.find(int pos) CacheTQ.find(int pos) Cache.get(int pos) Get an element in the cache if it is available.CacheLRU.get(int pos) CacheSecondLevel.get(int pos) CacheTQ.get(int pos) Cache.update(int pos, CacheObject record) Update an element in the cache.CacheLRU.update(int pos, CacheObject rec) CacheSecondLevel.update(int pos, CacheObject record) CacheTQ.update(int pos, CacheObject record) Methods in org.h2.util that return types with arguments of type CacheObjectModifier and TypeMethodDescriptionCache.getAllChanged()Get all objects in the cache that have been changed.CacheLRU.getAllChanged()CacheSecondLevel.getAllChanged()CacheTQ.getAllChanged()Methods in org.h2.util with parameters of type CacheObjectModifier and TypeMethodDescriptionprivate voidCacheLRU.addToFront(CacheObject rec) intCacheObject.compareTo(CacheObject other) voidCache.put(CacheObject r) Add an element to the cache.voidCacheLRU.put(CacheObject rec) voidCacheSecondLevel.put(CacheObject r) voidCacheTQ.put(CacheObject r) private voidCacheLRU.removeFromLinkedList(CacheObject rec) Cache.update(int pos, CacheObject record) Update an element in the cache.CacheLRU.update(int pos, CacheObject rec) CacheSecondLevel.update(int pos, CacheObject record) CacheTQ.update(int pos, CacheObject record) voidCacheWriter.writeBack(CacheObject entry) Persist a record.Constructor parameters in org.h2.util with type arguments of type CacheObjectModifierConstructorDescription(package private)CacheSecondLevel(Cache cache, Map<Integer, CacheObject> map)