IGFDelta Interface |
Namespace: GemStone.GemFire.Cache.Generic
The IGFDelta type exposes the following members.
Name | Description | |
---|---|---|
![]() | FromDelta |
Reads in delta information to this object in a user-defined format. This is
invoked on an existing application object after GemFire determines the
presence of delta in DataInput instance.
|
![]() | HasDelta | HasDelta( ) is invoked by GemFire during Region.Put( ICacheableKey, IGFSerializable ) to determine if the object contains a delta.
If HasDelta( ) returns true, the delta in the object is serialized by invoking ToDelta( DataOutput ).
If HasDelta( ) returns false, the object is serialized by invoking IGFSerializable.ToData( DataOutput ).
|
![]() | ToDelta |
Writes out delta information to out in a user-defined format. This is
invoked on an application object after GemFire determines the presence
of delta in it by calling HasDelta() on the object.
|