ContinueOnError
Specifies whether the provider continues processing batch updates after an error occurs.
Data Type
bool
Default Value
true
Remarks
When performing batch operations, errors can occur while adding, updating, or deleting items. The ContinueOnError property determines whether the driver should continue processing after encountering an error.
When set to true, the driver continues processing the remaining items in the batch, allowing all possible operations to complete.
When set to false, the driver stops processing as soon as an error occurs. Any items processed before the error are still added, updated, or deleted.
This property applies to both the SOAP and REST schemas and is useful for controlling whether batch operations should prioritize processing as many items as possible or stop immediately to address errors.
Additional Information
Continuing after errors can improve batch efficiency by processing as many items as possible without interruption. However, this may increase the need for follow-up handling to address failed entries. Stopping on error can simplify troubleshooting, but may reduce throughput and require restarting batches or using smaller batch sizes.