Uses of Interface
org.redisson.cache.CachedValue
-
Packages that use CachedValue Package Description org.redisson.cache -
-
Uses of CachedValue in org.redisson.cache
Classes in org.redisson.cache that implement CachedValue Modifier and Type Class Description static classLFUCacheMap.LFUCachedValueclassReferenceCachedValue<K,V>Created by jribble on 2/20/17.classStdCachedValue<K,V>Created by jribble on 2/20/17.Methods in org.redisson.cache that return CachedValue Modifier and Type Method Description protected CachedValue<K,V>AbstractCacheMap. create(K key, V value, long ttl, long maxIdleTime)protected CachedValueLFUCacheMap. create(K key, V value, long ttl, long maxIdleTime)protected CachedValue<K,V>ReferenceCacheMap. create(K key, V value, long ttl, long maxIdleTime)CachedValue<?,?>CachedValueReference. getOwner()CachedValue<?,?>CachedValueSoftReference. getOwner()CachedValue<?,?>CachedValueWeakReference. getOwner()Methods in org.redisson.cache with parameters of type CachedValue Modifier and Type Method Description protected voidAbstractCacheMap. onValueCreate(CachedValue<K,V> entry)protected voidLFUCacheMap. onValueCreate(CachedValue value)protected voidLRUCacheMap. onValueCreate(CachedValue<K,V> value)protected voidAbstractCacheMap. onValueRead(CachedValue<K,V> value)protected voidLFUCacheMap. onValueRead(CachedValue value)protected voidLRUCacheMap. onValueRead(CachedValue<K,V> value)protected voidAbstractCacheMap. onValueRemove(CachedValue<K,V> value)protected voidLFUCacheMap. onValueRemove(CachedValue value)protected voidLRUCacheMap. onValueRemove(CachedValue<K,V> value)protected VAbstractCacheMap. readValue(CachedValue<K,V> entry)Constructors in org.redisson.cache with parameters of type CachedValue Constructor Description CachedValueSoftReference(CachedValue<?,?> owner, V referent, ReferenceQueue<? super V> q)CachedValueWeakReference(CachedValue<?,?> owner, V referent, ReferenceQueue<? super V> q)
-