Package com.tangosol.io.pof.reflect
Class Codecs.MapCodec
java.lang.Object
com.tangosol.io.pof.reflect.Codecs.AbstractCodec
com.tangosol.io.pof.reflect.Codecs.MapCodec
- All Implemented Interfaces:
Codec
- Enclosing class:
Codecs
Implementation of
Codec
that delegates to
PofReader.readMap(int, Map)
and
PofWriter.writeMap(int, Map)
to deserialize and serialize
an object.- Since:
- 3.7.1
-
Field Summary
-
Constructor Summary
-
Method Summary
Methods inherited from class com.tangosol.io.pof.reflect.Codecs.AbstractCodec
encode, newInstance
-
Field Details
-
f_clzMap
Class that represents the Map implementation that will be serialized and deserialized into.
-
-
Constructor Details
-
MapCodec
Construct a MapCodec.- Parameters:
clzMap
- the Class that represents the Map implementation that will be serialized and deserialized into
-
-
Method Details
-
decode
Deserialize an object from the providedPofReader
. Implementing this interface allows introducing specific return implementations.- Parameters:
in
- the PofReader to read fromindex
- the index of the POF property to deserialize- Returns:
- a specific implementation of the POF property
- Throws:
IOException
- if an I/O error occurs
-