Table of Contents

Enum UpdateModeTypes

Namespace
MASES.KNet.Replicator
Assembly
MASES.KNet.dll
[Flags]
public enum UpdateModeTypes

Fields

Delayed = 4096

The value is stored in KNetCompactedReplicator<K, V> only upon a request, otherwise only the key is stored

OnConsume = 2

The KNetCompactedReplicator<K, V> is updated only after an update is consumed from Kafka, even if the add or update is made locally by the current instance

OnConsumeSync = OnDelivery | OnConsume

The KNetCompactedReplicator<K, V> is updated only after an update is consumed from Kafka, even if the add or update is made locally by the current instance. Plus the update waits the consume of the data before unlock

OnDelivery = 1

The KNetCompactedReplicator<K, V> is updated as soon as an update is delivered to Kafka by the current application