Interface IPipelineSink<TOut>
Represents a pipeline sink.
Namespace: DNVGL.One.Compute.WorkExecution.ExecutionModel
Assembly: DNVGL.One.Compute.WorkExecution.dll
Syntax
public interface IPipelineSink<out TOut>
Type Parameters
Name | Description |
---|---|
TOut | The type of the output. |
Methods
View SourceComplete()
Completes this pipeline.
Declaration
TOut Complete()
Returns
Type | Description |
---|---|
TOut | Aggregated output from the pipeline processing. |
Push(object)
Pushes the specified result to the sink.
Declaration
void Push(object result)
Parameters
Type | Name | Description |
---|---|---|
object | result | The result. |