> ## 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.

# QueuePushingModeEnum

> ABBYY FineReader Engine API の QueuePushingModeEnum — 並列処理キューに作業を送るモード（Linux および Windows のみ）。

<Note>
  この列挙型は、Linux 版および Windows 版の FRE に実装されています。
</Note>

QueuePushingModeEnum の列挙定数は、再認識のために [Batch Processor](/ja/fine-reader/engine/api-reference/batch-processor/batchprocessor) にページを送る方法を指定するために使用されます。

```
typedef enum {
 QPM_Begin,
 QPM_End
} QueuePushingModeEnum;
```

<div id="elements">
  ## 要素
</div>

| 名称         | 説明                                                                                                                                                                                                                                                                                                                                                                                                       |
| ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| QPM\_Begin | 処理キューの先頭にページを追加します。この場合、処理済みのページは次回の [IBatchProcessor::GetNextProcessedPage](/ja/fine-reader/engine/api-reference/batch-processor/batchprocessor/getnextprocessedpage-method) メソッド呼び出しで返されます。ページをキューの先頭に追加すると、そのページが処理されるまで、ほかの処理済みページはユーザーに返されません。                                                                                                                                                      |
| QPM\_End   | Batch Processor の現在のキューの末尾にページを追加します。この場合、そのページは、現在のキュー内のほかのすべてのページが処理されてユーザーに返された後に返されます。現在の Batch Processor のキューには、[IImageSource::GetNextImageFile](/ja/fine-reader/engine/api-reference/batch-processor/iimagesource/getnextimagefile-method) メソッドを使用してすでにキューに追加された画像のみが含まれます。一方、画像ソースには、まだキューに追加されていないほかの画像が含まれている場合があります。したがって、ページが現在のキューの末尾に追加されたとしても、その画像が画像ソース内のすべての画像の処理後に返されることを意味するわけではありません。 |

<div id="used-in">
  ## 使用箇所
</div>

[IBatchProcessor::ProcessPageAsync](/ja/fine-reader/engine/api-reference/batch-processor/batchprocessor/processpageasync-method)
