Package org.infinispan.metadata
Class EmbeddedMetadata
- java.lang.Object
-
- org.infinispan.metadata.EmbeddedMetadata
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
EmbeddedMetadata.Builder
static class
EmbeddedMetadata.Externalizer
-
Field Summary
Fields Modifier and Type Field Description static EmbeddedMetadata
EMPTY
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Metadata.Builder
builder()
Returns an instance ofMetadata.Builder
which can be used to build new instances ofMetadata
instance which are full copies of thisMetadata
.boolean
equals(Object o)
int
hashCode()
long
lifespan()
Returns the lifespan of the cache entry with which this metadata object is associated, in milliseconds.long
maxIdle()
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.String
toString()
EntryVersion
version()
Returns the version of the cache entry with which this metadata object is associated.
-
-
-
Field Detail
-
EMPTY
public static final EmbeddedMetadata EMPTY
-
-
Method Detail
-
lifespan
public long lifespan()
Description copied from interface:Metadata
Returns 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:Metadata
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.
-
version
public EntryVersion version()
Description copied from interface:Metadata
Returns the version of the cache entry with which this metadata object is associated.
-
builder
public Metadata.Builder builder()
Description copied from interface:Metadata
Returns an instance ofMetadata.Builder
which can be used to build new instances ofMetadata
instance which are full copies of thisMetadata
.- Specified by:
builder
in interfaceMetadata
- Returns:
- instance of
Metadata.Builder
-
-