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 class
LFUCacheMap.LFUCachedValue
class
ReferenceCachedValue<K,V>
Created by jribble on 2/20/17.class
StdCachedValue<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 CachedValue
LFUCacheMap. 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 void
AbstractCacheMap. onValueCreate(CachedValue<K,V> entry)
protected void
LFUCacheMap. onValueCreate(CachedValue value)
protected void
LRUCacheMap. onValueCreate(CachedValue<K,V> value)
protected void
AbstractCacheMap. onValueRead(CachedValue<K,V> value)
protected void
LFUCacheMap. onValueRead(CachedValue value)
protected void
LRUCacheMap. onValueRead(CachedValue<K,V> value)
protected void
AbstractCacheMap. onValueRemove(CachedValue<K,V> value)
protected void
LFUCacheMap. onValueRemove(CachedValue value)
protected void
LRUCacheMap. onValueRemove(CachedValue<K,V> value)
protected V
AbstractCacheMap. 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)
-