Class JoinTarget<TInput>

A target block that serves as a destination for components that can have multiple inputs.

Inheritance
JoinTarget<TInput>
Namespace: ETLBox.DataFlow
Assembly: ETLBox.dll
Syntax
    public sealed class JoinTarget<TInput> : DataFlowJoinTarget<TInput>, IDataFlowLogging, IDataFlowDestination<TInput>, IDataFlowDestination, IDataFlowComponent, ILoggableTask
Type Parameters
NameDescription
TInput

Type of ingoing data

Constructors

JoinTarget(DataFlowComponent, Action<TInput>)

Declaration
    public JoinTarget(DataFlowComponent attachedSuccessor, Action<TInput> action)
Parameters
TypeNameDescription
DataFlowComponentattachedSuccessor
Action<TInput>action

Properties

TargetBlock

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

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

Methods

CheckParameter()

Declaration
    protected override void CheckParameter()
Overrides

CleanUpOnFaulted(Exception)

Declaration
    protected override void CleanUpOnFaulted(Exception e)
Parameters
TypeNameDescription
Exceptione
Overrides

CleanUpOnSuccess()

Declaration
    protected override void CleanUpOnSuccess()
Overrides

InitComponent()

Declaration
    protected override void InitComponent()
Overrides

Implements