Interface IPipelineSource<TIn>
Represents a pipeline source.
Namespace: DNVGL.One.Compute.WorkExecution.ExecutionModel
Assembly: DNVGL.One.Compute.WorkExecution.dll
Syntax
public interface IPipelineSource<in TIn>
Type Parameters
Name | Description |
---|---|
TIn | The type of the input. |
Methods
View SourceExecute(TIn, IPipeline, IExecutionContext)
Executes the pipeline source on the specified input.
Declaration
void Execute(TIn input, IPipeline pipeline, IExecutionContext executionContext)
Parameters
Type | Name | Description |
---|---|---|
TIn | input | The input. |
IPipeline | pipeline | The pipeline. |
IExecutionContext | executionContext | The execution context. |