Module passthrough

Module passthrough 

Source
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 unchanged

Structs§

PassThroughConfig
Configuration for PassThrough stage (empty - no parameters needed)
PassThroughService
Service that passes data through without modification