Package org.infinispan.persistence.spi
Interface MarshalledValue
-
public interface MarshalledValue
A marshallable object containing serialized representations of cache values and metadata, that can be used to store values, metadata and timestamps as a single entity.- Since:
- 10.0
- Author:
- Ryan Emerson
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getCreated()
ByteBuffer
getInternalMetadataBytes()
long
getLastUsed()
ByteBuffer
getMetadataBytes()
ByteBuffer
getValueBytes()
-
-
-
Method Detail
-
getValueBytes
ByteBuffer getValueBytes()
-
getMetadataBytes
ByteBuffer getMetadataBytes()
-
getInternalMetadataBytes
ByteBuffer getInternalMetadataBytes()
-
getCreated
long getCreated()
-
getLastUsed
long getLastUsed()
-
-