oxigdal-workflow 0.1.4

DAG-based workflow engine for complex geospatial processing pipelines
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Conditional execution system for workflows.
//!
//! This module provides conditional branching, switch-case logic, and loop support
//! for dynamic workflow execution.

pub mod branching;
pub mod expressions;

pub use branching::{
    Case, ConditionalBranch, ConditionalEvaluator, ExecutionDecision, LoopCondition, SwitchCase,
};
pub use expressions::{
    BinaryOperator, Expression, ExpressionContext, UnaryOperator, parse_simple_expression,
};