Uses of Interface
org.glassfish.hk2.utilities.cache.HybridCacheEntry
Packages that use HybridCacheEntry
-
Uses of HybridCacheEntry in org.glassfish.hk2.utilities.cache
Classes in org.glassfish.hk2.utilities.cache that implement interfaces with type arguments of type HybridCacheEntryModifier and TypeClassDescriptionclassLRUHybridCache<K,V> Hybrid cache that allows explicit removals of included entries as well as implicit removal of entries that have been least recently accessed.Methods in org.glassfish.hk2.utilities.cache that return HybridCacheEntryModifier and TypeMethodDescriptionLRUHybridCache.createCacheEntry(K k, V v, boolean dropMe) Create cache entry for given values.Constructor parameters in org.glassfish.hk2.utilities.cache with type arguments of type HybridCacheEntryModifierConstructorDescriptionLRUHybridCache(int maxCacheSize, Computable<K, HybridCacheEntry<V>> computable) Create new cache with given computable to compute values.LRUHybridCache(int maxCacheSize, Computable<K, HybridCacheEntry<V>> computable, LRUHybridCache.CycleHandler<K> cycleHandler) Create new cache with given computable and cycleHandler.