Process¶
arkindex_worker.worker.process ¶
Classes¶
ActivityState ¶
Bases: Enum
Processing state of an element.
Attributes¶
Queued
class-attribute
instance-attribute
¶
Queued = 'queued'
The element has not yet been processed by a worker.
Started
class-attribute
instance-attribute
¶
Started = 'started'
The element is being processed by a worker.
Processed
class-attribute
instance-attribute
¶
Processed = 'processed'
The element has been successfully processed by a worker.
Error
class-attribute
instance-attribute
¶
Error = 'error'
An error occurred while processing this element.