DocReaderAction
DocReaderAction
enumeration contains all possible notification codes about reading process.
const DocReaderAction = {
COMPLETE: 1,
PROCESS: 0,
CANCEL: 2,
ERROR: 3,
NOTIFICATION: 5,
PROCESS_WHITE_UV_IMAGES: 6,
MORE_PAGES_AVAILABLE: 8,
}
Constant | Description |
---|---|
COMPLETE | Processing finished, the results were received |
PROCESS | Processing didn't finish, intermediate results may be obtained |
CANCEL | Processing was cancelled, incomplete results may be obtained |
ERROR | An error occurred during processing, incomplete results may be obtained |
NOTIFICATION | Notification from long running task arrived, DocumentReaderNotification available, all other results are null |
MORE_PAGES_AVAILABLE | Processing completed for a single page |