Expand description
§PassThrough Service
Provides a no-op stage that passes data through unchanged.
§Purpose
PassThrough stages are useful for:
- Pipeline structure placeholders
- Testing and debugging pipelines
- Future extension points
- Restoration pipeline markers
§Usage
use adaptive_pipeline::infrastructure::services::PassThroughService;
use adaptive_pipeline_domain::services::StageService;
let service = PassThroughService::new();
// Data passes through completely unchangedStructs§
- Pass
Through Config - Configuration for PassThrough stage (empty - no parameters needed)
- Pass
Through Service - Service that passes data through without modification