Click or drag to resize

IStreamSerializerT Interface

A base class for custom serialization.

Namespace:  Hazelcast.IO.Serialization
Assembly:  Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.12.3
Syntax
public interface IStreamSerializer<T> : ISerializer

Type Parameters

T

The IStreamSerializerT type exposes the following members.

Methods
  NameDescription
Public methodDestroy
Called when instance is shutting down.
(Inherited from ISerializer.)
Public methodGetTypeId (Inherited from ISerializer.)
Public methodRead
Reads object from objectDataInputStream
Public methodWrite
This method writes object to ObjectDataOutput
Top
Remarks
A base class for custom serialization. User can register custom serializer.
See Also