Click or drag to resize
IGFSerializable Interface
This interface class is the superclass of all user objects in the cache that can be serialized.

Namespace: GemStone.GemFire.Cache.Generic
Assembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntax
public interface IGFSerializable

The IGFSerializable type exposes the following members.

Properties
  NameDescription
Public propertyClassId
Returns the classId of the instance being serialized. This is used by deserialization to determine what instance type to create and deserialize into.
Public propertyObjectSize
Get the size of this object in bytes. This is only needed if you use the HeapLRU feature.
Top
Methods
  NameDescription
Public methodFromData
Deserialize this object, typical implementation should return the 'this' pointer.
Public methodToData
Serializes this object.
Public methodToString
Return a string representation of the object.
Top
See Also