Package com.tangosol.io.pof.reflect
Class Codecs.DefaultCodec
java.lang.Object
com.tangosol.io.pof.reflect.Codecs.AbstractCodec
com.tangosol.io.pof.reflect.Codecs.DefaultCodec
- All Implemented Interfaces:
 Codec
- Enclosing class:
 Codecs
Implementation of 
Codec that simply delegates to
 PofReader.readObject(int) and
 PofWriter.writeObject(int, Object) to deserialize and serialize
 an object.- Since:
 - 3.7.1
 
- 
Constructor Summary
Constructors - 
Method Summary
Methods inherited from class com.tangosol.io.pof.reflect.Codecs.AbstractCodec
encode, newInstance 
- 
Constructor Details
- 
DefaultCodec
public DefaultCodec() 
 - 
 - 
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
 
 -