Interface RealtimeReconcilerOptionsExperimental

interface RealtimeReconcilerOptions {
    maxChangesPerEvent?: number;
    rebuildThreshold?: number;
}

Properties

maxChangesPerEvent?: number

A single event/trigger producing more identity changes than this forces an immediate rebuild.

500
rebuildThreshold?: number

Cumulative pending patches (since the last rebuild) that force the next reconciliation to rebuild.

2000