Package org.infinispan.persistence.spi
Interface MarshalledValue
-
- All Known Implementing Classes:
MarshalledValueImpl
public interface MarshalledValueA 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 longgetCreated()org.infinispan.commons.io.ByteBuffergetInternalMetadataBytes()longgetLastUsed()org.infinispan.commons.io.ByteBuffergetMetadataBytes()org.infinispan.commons.io.ByteBuffergetValueBytes()
-
-
-
Method Detail
-
getValueBytes
org.infinispan.commons.io.ByteBuffer getValueBytes()
-
getMetadataBytes
org.infinispan.commons.io.ByteBuffer getMetadataBytes()
-
getInternalMetadataBytes
org.infinispan.commons.io.ByteBuffer getInternalMetadataBytes()
-
getCreated
long getCreated()
-
getLastUsed
long getLastUsed()
-
-