ComRetryConfig Type
Configuration for COM call retry and timeout behavior. Use this to tune timeout/retry values based on expected data volume and network conditions.
Record fields
| Record Field |
Description
|
Full Usage:
MaxRetries
Field type: int
|
Number of retry attempts for transient failures (communication errors). Default: 2 for general calls, 0 for read operations (which have their own retry logic).
|
Maximum time to wait for a single COM call before considering it hung. Default: 30 seconds. Increase for slow connections or large data volumes.
|
Static members
| Static member |
Description
|
|
Default configuration: 30s timeout, 2 retries (suitable for most use cases).
|
|
Configuration for high-volume operations: 60s timeout, 3 retries.
|
|
Configuration for read operations: uses timeout but no retries (readAll has its own retry logic).
|
Xanthos