Skip to main content

wowlab_sentinel/scheduler/runtime/
mod.rs

1//! In-process scheduler runtime state; only final results reach Postgres.
2
3#[cfg(test)]
4mod e2e_tests;
5mod job;
6#[cfg(test)]
7mod memory_tests;
8
9mod strategy;
10#[cfg(test)]
11mod tests;
12mod tournament;
13
14pub(crate) use job::{
15    AssignedBatch, ClaimRecord, CompletionOutcome, JobRuntime, JobRuntimeInit, JobRuntimeStatus,
16    JobRuntimeStore, ProgressSnapshot,
17};
18pub(crate) use tournament::Phase;