Package org.infinispan.container.entries
Class L1InternalCacheEntry
- java.lang.Object
-
- org.infinispan.container.entries.AbstractInternalCacheEntry
-
- org.infinispan.container.entries.MortalCacheEntry
-
- org.infinispan.container.entries.L1InternalCacheEntry
-
- All Implemented Interfaces:
Cloneable
,Map.Entry
,CacheEntry
,InternalCacheEntry
,MetadataAware
public class L1InternalCacheEntry extends MortalCacheEntry
AInternalCacheEntry
implementation to store a L1 entry.- Since:
- 7.1
- Author:
- Pedro Ruivo
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.infinispan.container.entries.MortalCacheEntry
MortalCacheEntry.Externalizer
-
-
Field Summary
-
Fields inherited from class org.infinispan.container.entries.MortalCacheEntry
created, lifespan, value
-
Fields inherited from class org.infinispan.container.entries.AbstractInternalCacheEntry
key
-
-
Constructor Summary
Constructors Constructor Description L1InternalCacheEntry(Object key, Object value, long lifespan, long created)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isL1Entry()
-
Methods inherited from class org.infinispan.container.entries.MortalCacheEntry
canExpire, clone, getCreated, getExpiryTime, getLastUsed, getLifespan, getMaxIdle, getMetadata, getValue, isExpired, isExpired, reincarnate, reincarnate, setLifespan, setMetadata, setValue, toInternalCacheValue, toString, touch, touch
-
Methods inherited from class org.infinispan.container.entries.AbstractInternalCacheEntry
commit, equals, getKey, hashCode, isChanged, isCreated, isEvicted, isNull, isRemoved, setChanged, setCreated, setEvicted, setRemoved, setSkipLookup, skipLookup
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.infinispan.container.entries.CacheEntry
commit, isLoaded, isValid, rollback, setCreated, setLastUsed, setLoaded, setValid, undelete
-
Methods inherited from interface org.infinispan.container.entries.InternalCacheEntry
canExpireMaxIdle
-
-
-
-
Method Detail
-
isL1Entry
public boolean isL1Entry()
- Specified by:
isL1Entry
in interfaceInternalCacheEntry
- Overrides:
isL1Entry
in classAbstractInternalCacheEntry
- Returns:
true
if the entry is a L1 entry.
-
-