Class MarshallerEncoder
java.lang.Object
org.infinispan.commons.dataconversion.MarshallerEncoder
- All Implemented Interfaces:
Encoder
- Direct Known Subclasses:
GenericJbossMarshallerEncoder
,GlobalMarshallerEncoder
,JavaSerializationEncoder
Deprecated.
Since 12.1, to be removed in a future version.
Encoder that uses a
StreamingMarshaller
to convert objects to byte[] and back.- Since:
- 9.1
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfromStorage
(Object stored) Deprecated.Convert from storage format to the read/write format.boolean
Deprecated.protected byte[]
Deprecated.Deprecated.Convert data in the read/write format to the storage format.protected Object
unmarshall
(byte[] source) Deprecated.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.infinispan.commons.dataconversion.Encoder
getStorageFormat, id
-
Constructor Details
-
MarshallerEncoder
Deprecated.
-
-
Method Details
-
toStorage
Deprecated.Description copied from interface:Encoder
Convert data in the read/write format to the storage format. -
fromStorage
Deprecated.Description copied from interface:Encoder
Convert from storage format to the read/write format.- Specified by:
fromStorage
in interfaceEncoder
- Parameters:
stored
- data as stored in the cache, never null.- Returns:
- data in the read/write format
-
isStorageFormatFilterable
public boolean isStorageFormatFilterable()Deprecated.- Specified by:
isStorageFormatFilterable
in interfaceEncoder
- Returns:
- if true, will perform stream and related operation in the storage format.
-
unmarshall
Deprecated.- Throws:
IOException
ClassNotFoundException
-
marshall
Deprecated.- Throws:
IOException
InterruptedException
-