actionqueue_engine/scheduler/mod.rs
1//! Scheduler utilities for run promotion and selection.
2//!
3//! This module provides scheduling logic for moving runs between states
4//! and selecting runs for execution.
5//!
6//! The promotion module handles moving runs from Scheduled to Ready when
7//! their scheduled_at time has passed.
8
9pub mod attempt_finish;
10pub mod promotion;
11pub mod retry_promotion;