Interface for data processing components to update data items partially.
Description
The IPartialUpdater interface is used by data processing components to update data items partially.
Instance methods
update_partially
Updates only few selected fields in a data item.
update_partially(correlation_id: Optional[str], id: Any, data: AnyValueMap): T
- correlation_id: Optional[str] - (optional) transaction id used to trace execution through the call chain.
- id: Any - id of the data item to be updated.
- data: AnyValueMap - map with fields to be updated.
- returns: T - updated item