Skip to main content

JobPriority

Enumeration of priority levels for jobs.

Defines the urgency levels that can be assigned to manufacturing jobs, helping determine processing order and resource allocation.

Values

ValueDescription
LOWRoutine job with flexible timing
MEDIUMStandard priority job
HIGHUrgent job requiring preferential treatment
URGENTCritical job requiring immediate attention

Usage Example

from omm import JobPriority

# Access enum value
value = JobPriority.LOW

# Value comparison
if value == JobPriority.LOW:
print(f'Value is LOW')