You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Task order complements priority with a relative prioritization based on task status.
/// How to apply ordering algorithm across prioritiesenumOrderType{/// --group-order (default): Priority takes precedence; order breaks tiesGroup,/// --global-order: Order algorithm takes precedence; priority breaks tiesGlobal,}/// Order to take tasksenumOrder{/// --round-robin-running (default):/// Select a task with the fewest outstanding jobs/// (taken AND (NOT finished) AND (NOT superceded))RoundRobinRunning,/// --round-robin-taken: Select a task with the fewest taken jobsRoundRobinTaken,/// --sequential-tasks: Exhaust one task before moving on to the nextSequential,}
Although Order::RoundRobinRunning will eventually be the default, I have only implemented Order::Sequential at this point.
The text was updated successfully, but these errors were encountered:
Task order complements priority with a relative prioritization based on task status.
Although
Order::RoundRobinRunning
will eventually be the default, I have only implementedOrder::Sequential
at this point.The text was updated successfully, but these errors were encountered: