Package org.infinispan.marshall.core
Interface MarshalledEntryFactory<K,V>
-
- All Known Implementing Classes:
MarshalledEntryFactoryImpl
public interface MarshalledEntryFactory<K,V>
Factory forMarshalledEntry
.- Since:
- 6.0
- Author:
- Mircea Markus
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MarshalledEntry<K,V>
newMarshalledEntry(Object key, Object value, InternalMetadata im)
MarshalledEntry<K,V>
newMarshalledEntry(Object key, org.infinispan.commons.io.ByteBuffer valueBytes, org.infinispan.commons.io.ByteBuffer metadataBytes)
MarshalledEntry<K,V>
newMarshalledEntry(org.infinispan.commons.io.ByteBuffer key, org.infinispan.commons.io.ByteBuffer valueBytes, org.infinispan.commons.io.ByteBuffer metadataBytes)
-
-
-
Method Detail
-
newMarshalledEntry
MarshalledEntry<K,V> newMarshalledEntry(org.infinispan.commons.io.ByteBuffer key, org.infinispan.commons.io.ByteBuffer valueBytes, org.infinispan.commons.io.ByteBuffer metadataBytes)
-
newMarshalledEntry
MarshalledEntry<K,V> newMarshalledEntry(Object key, org.infinispan.commons.io.ByteBuffer valueBytes, org.infinispan.commons.io.ByteBuffer metadataBytes)
-
newMarshalledEntry
MarshalledEntry<K,V> newMarshalledEntry(Object key, Object value, InternalMetadata im)
-
-