Delta Propagation API
Delta propagation uses configuration properties and a simple API to send and receive deltas.
.NET - for C#
Your application class must implement:
-
Apache.Geode.Client.IGFDelta
-
Apache.Geode.Client.IGeodeSerializable
IGFDelta
provides the methods, HasDelta
, ToDelta
, and FromDelta
, which you program to report on, send, and receive deltas for your class.
Additionally, for cloning, your class must implement the standard .NET IClonable
interface and its Clone
method. See Cloning.
C++
Your application must publicly derive from:
-
apache::geode::client::Delta
Delta
provides the methods, hasDelta
, toDelta
, fromDelta
, which you program to report on, send, and receive deltas for your class.
For cloning, use the clone
method provided in the Delta interface. See Cloning.