Package org.infinispan.metadata.impl
Class InternalMetadataImpl
- java.lang.Object
-
- org.infinispan.metadata.impl.InternalMetadataImpl
-
- All Implemented Interfaces:
InternalMetadata,Metadata
public class InternalMetadataImpl extends Object implements InternalMetadata
- Since:
- 6.0
- Author:
- Mircea Markus
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classInternalMetadataImpl.Externalizer-
Nested classes/interfaces inherited from interface org.infinispan.metadata.Metadata
Metadata.Builder
-
-
Constructor Summary
Constructors Constructor Description InternalMetadataImpl()InternalMetadataImpl(InternalCacheEntry ice)InternalMetadataImpl(InternalCacheValue icv)InternalMetadataImpl(Metadata actual, long created, long lastUsed)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Metadataactual()Metadata.Builderbuilder()Returns an instance ofMetadata.Builderwhich can be used to build new instances ofMetadatainstance which are full copies of thisMetadata.longcreated()booleanequals(Object o)longexpiryTime()inthashCode()booleanisExpired(long now)longlastUsed()longlifespan()Returns the lifespan of the cache entry with which this metadata object is associated, in milliseconds.longmaxIdle()Returns the the maximum amount of time that the cache entry associated with this metadata object is allowed to be idle for before it is considered as expired, in milliseconds.StringtoString()EntryVersionversion()Returns the version of the cache entry with which this metadata object is associated.
-
-
-
Constructor Detail
-
InternalMetadataImpl
public InternalMetadataImpl()
-
InternalMetadataImpl
public InternalMetadataImpl(InternalCacheEntry ice)
-
InternalMetadataImpl
public InternalMetadataImpl(InternalCacheValue icv)
-
InternalMetadataImpl
public InternalMetadataImpl(Metadata actual, long created, long lastUsed)
-
-
Method Detail
-
lifespan
public long lifespan()
Description copied from interface:MetadataReturns the lifespan of the cache entry with which this metadata object is associated, in milliseconds. Negative values are interpreted as unlimited lifespan.
-
maxIdle
public long maxIdle()
Description copied from interface:MetadataReturns the the maximum amount of time that the cache entry associated with this metadata object is allowed to be idle for before it is considered as expired, in milliseconds.
-
version
public EntryVersion version()
Description copied from interface:MetadataReturns the version of the cache entry with which this metadata object is associated.
-
builder
public Metadata.Builder builder()
Description copied from interface:MetadataReturns an instance ofMetadata.Builderwhich can be used to build new instances ofMetadatainstance which are full copies of thisMetadata.- Specified by:
builderin interfaceMetadata- Returns:
- instance of
Metadata.Builder
-
created
public long created()
- Specified by:
createdin interfaceInternalMetadata
-
lastUsed
public long lastUsed()
- Specified by:
lastUsedin interfaceInternalMetadata
-
actual
public Metadata actual()
-
expiryTime
public long expiryTime()
- Specified by:
expiryTimein interfaceInternalMetadata
-
isExpired
public boolean isExpired(long now)
- Specified by:
isExpiredin interfaceInternalMetadata
-
-