Table of Contents

Interface IPipeline<T>

Namespace
Framework.Patterns.Pure.Pipeline
Assembly
Assembly-CSharp.dll

데이터를 단계별로 변환하는 파이프라인 계약. Execute(input)으로 변환 결과 반환. 사용 예: 입력 정제, 저장 데이터 변환, 데미지 수식 처리.

public interface IPipeline<T>

Type Parameters

T

Methods

Execute(T)

등록된 단계를 순서대로 실행해 변환된 결과 반환. input은 불변 취급 — 각 단계는 새 값을 반환.

T Execute(T input)

Parameters

input T

Returns

T