public class LazyCacheEntryView<K,V> extends Object implements CacheEntryView<K,V>
CacheEntryView
for converting key and value to object when they are touched as lazy.Constructor and Description |
---|
LazyCacheEntryView(Object key,
Object value,
long expirationTime,
long lastAccessTime,
long accessHit) |
LazyCacheEntryView(Object key,
Object value,
long expirationTime,
long lastAccessTime,
long accessHit,
SerializationService serializationService) |
Modifier and Type | Method and Description |
---|---|
long |
getAccessHit()
Gets the count of how many time this cache entry has been accessed.
|
long |
getExpirationTime()
Gets the expiration time in milliseconds of the cache entry.
|
K |
getKey()
Gets the key of the cache entry.
|
long |
getLastAccessTime()
Gets the last access time in milliseconds of the cache entry.
|
V |
getValue()
Gets the value of the cache entry.
|
public LazyCacheEntryView(Object key, Object value, long expirationTime, long lastAccessTime, long accessHit)
public LazyCacheEntryView(Object key, Object value, long expirationTime, long lastAccessTime, long accessHit, SerializationService serializationService)
public K getKey()
CacheEntryView
getKey
in interface CacheEntryView<K,V>
public V getValue()
CacheEntryView
getValue
in interface CacheEntryView<K,V>
public long getExpirationTime()
CacheEntryView
getExpirationTime
in interface CacheEntryView<K,V>
public long getLastAccessTime()
CacheEntryView
getLastAccessTime
in interface CacheEntryView<K,V>
public long getAccessHit()
CacheEntryView
getAccessHit
in interface CacheEntryView<K,V>
Copyright © 2016 Hazelcast, Inc.. All Rights Reserved.