TimeoutHandlingModeEnum
TimeoutHandlingModeEnum enumeration constants are used to define the action which must be taken during parallel processing when the time allotted for a wait interval expires.
typedef enum {
THM_Continue,
THM_SkipAndContinue,
THM_Cancel
} TimeoutHandlingModeEnum;
Elements
Name | Description |
---|---|
THM_Continue | Wait one more time period. |
THM_SkipAndContinue |
Reload the waiting processes and continue the processing. Note: All the pages which were in progress when the error occurred will be skipped during the continue processing. It is recommended to restart the processing for these pages. |
THM_Cancel | Cancel the processing. |
Used in
IParallelProcessingCallback::OnWaitIntervalExceeded
See also
7/3/2024 8:50:25 AM