> ## Documentation Index
> Fetch the complete documentation index at: https://docs.abbyy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# TimeoutHandlingModeEnum

<Note>
  This enum is implemented in FRE for Linux and Windows.
</Note>

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. <br /><br /> **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](/fine-reader/engine/api-reference/supplementary-objects-and-methods/iparallelprocessingcallback/onwaitintervalexceeded-method)

## See also

[Parallel Processing with ABBYY FineReader Engine](/fine-reader/engine/guided-tour/advanced-techniques/parallel-processing)
