enum Abbyy::TaskStatus

Defined in:

abbyy/task_status.cr

Enum Members

Submitted = 0

The task has been registered in the system, the task has not been passed for processing yet.

Queued = 1

The task has been placed to the processing queue, it is waiting to be processed.

InProgress = 2

The task is being processed.

Completed = 3

The task has been processed successfully. For a task with this status, the URL for downloading the result of processing is available in the response.

ProcessingFailed = 4

The task has not been processed because an error occurred. You can find the description of the error in the XML response.

Deleted = 5

The task has been deleted. This status can be returned only for the Abyyy::Client::delete_task method.

NotEnoughCredits = 6

You do not have enough money on your account to process the task.

Instance Method Summary

Instance Method Detail

def completed? #

[View source]
def deleted? #

[View source]
def in_progress? #

[View source]
def not_enough_credits? #

[View source]
def processing_failed? #

[View source]
def queued? #

[View source]
def submitted? #

[View source]