Click or drag to resize

ICodec Interface

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
An ICodec provides an interception point for any specific code that needs to be executed pre or post (de)serialization. In the case of deserialization this could be to return a concrete implementation and with serialization this could be to explicitly call a specific method on IPofWriter that is not carried out by WriteObject(Int32, Object).

Namespace:  Tangosol.IO.Pof.Reflection
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public interface ICodec

The ICodec type exposes the following members.

Methods
  NameDescription
Public methodDecode
Deserialize an object from the provided IPofReader. Implementing this interface allows introducing specific return implementations.
Public methodEncode
Serialize an object using the provided IPofWriter.
Top
See Also