MapDelta<'K, 'V> Type
A map delta: upserted entries and removed keys since the previous delivery. The buffers are transient: valid only during the delivery that received the delta.
Record fields
| Record Field |
Description
|
Full Usage:
InDrain
Field type: int[]
Modifiers: mutable |
|
|
|
|
|
Instance members
| Instance member |
Description
|
Full Usage:
this.IsEmpty
Returns: bool
|
Gets whether this delta contains no operations.
|
Full Usage:
this.Remove
Parameters:
'K
|
Appends a remove operation. For AMap.custom computes.
|
|
The keys removed. Transient: valid during the callback only.
|
Full Usage:
this.Set
Parameters:
'K
value : 'V
|
Appends an upsert operation. For AMap.custom computes.
|
|
The entries set (added or updated). Transient: valid during the callback only.
|
Mibo