Lines Matching defs:exec_order
29 def __init__(self, action, exec_order=DEFAULT_ACTION_ORDER, global_action=True, log_calls = False):
30 self.exec_order = exec_order
44 return self.exec_order < other.exec_order
56 return f"func: {self.__name__}; global:{self.global_action}; exec_order: {self.exec_order}"
61 def sp_action(in_action = None, global_action = False, log_calls=False, exec_order=DEFAULT_ACTION_ORDER):
69 :param exec_order - action's calling order.
72 action = _ConfiguredAction(action, exec_order, global_action, log_calls)
83 - Actions are called respecting the order established by their "exec_order" field.
145 @SpSetupActions.sp_action(exec_order=1)