pipeline-service 2.4.0

Pipeline execution service for roxid
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Execution Engine Module
// Handles DAG construction, execution orchestration, and matrix expansion

pub mod context;
pub mod events;
pub mod executor;
pub mod graph;
pub mod matrix;

// Re-export key types
pub use context::RuntimeContext;
pub use events::{ExecutionEvent, ProgressSender};
pub use executor::{ExecutionResult, PipelineExecutor};
pub use graph::{ExecutionGraph, GraphError, JobNode, StageNode};
pub use matrix::{MatrixExpander, MatrixInstance};