Repository URL to install this package:
|
Version:
5.4.1 ▾
|
class WorkflowRuleTarget:
"""
Workflow Rule target which is encompassed
inside targets
..attribute::queue
The queue which will handle the task matching this filter target
..attribute::expression
The dynamic expression if any for this matching
..attribute::priority
The priority for the target
..attribute::timeout
The timeout before the reservation expires.
"""
def __init__(self, queue, expression, priority, timeout):
self.queue = queue
self.expression = expression
self.priority = priority
self.timeout = timeout