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.
|
| THM_Cancel | Cancel the processing. |
Used in
IParallelProcessingCallback::OnWaitIntervalExceeded
See also
03.07.2024 8:50:25
