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(java.lang.Object key, java.lang.Object value, InternalMetadata im)MarshalledEntry<K,V>newMarshalledEntry(java.lang.Object key, ByteBuffer valueBytes, ByteBuffer metadataBytes)MarshalledEntry<K,V>newMarshalledEntry(ByteBuffer key, ByteBuffer valueBytes, ByteBuffer metadataBytes)
-
-
-
Method Detail
-
newMarshalledEntry
MarshalledEntry<K,V> newMarshalledEntry(ByteBuffer key, ByteBuffer valueBytes, ByteBuffer metadataBytes)
-
newMarshalledEntry
MarshalledEntry<K,V> newMarshalledEntry(java.lang.Object key, ByteBuffer valueBytes, ByteBuffer metadataBytes)
-
newMarshalledEntry
MarshalledEntry<K,V> newMarshalledEntry(java.lang.Object key, java.lang.Object value, InternalMetadata im)
-
-