Class DataFlowJoinTarget<TInput>

A target block base implementation

Inherited Members
Namespace: ETLBox.DataFlow
Assembly: ETLBox.dll
Syntax
    public abstract class DataFlowJoinTarget<TInput> : DataFlowComponent, IDataFlowLogging, IDataFlowDestination<TInput>, IDataFlowDestination, IDataFlowComponent, ILoggableTask
Type Parameters
NameDescription
TInput

Type of ingoing data

Properties

TargetBlock

TargetBlock from the underlying TPL.Dataflow which is used as output buffer for the component.

Declaration
    public virtual ITargetBlock<TInput> TargetBlock { get; }
Property Value
TypeDescription
ITargetBlock<TInput>

Methods

CreateLinkInInternalFlow(DataFlowComponent)

Declaration
    protected void CreateLinkInInternalFlow(DataFlowComponent successor)
Parameters
TypeNameDescription
DataFlowComponentsuccessor

Implements