Class RowTargetBase<TDerived, TInput>
An abstract dataflow worker which repeatedly executes the
OnInputRow(TInput) method when there is an input row available
on the Input port. The library user must inherit this class and override OnInputRow
to provide custom functionality.
OnInputRow(TInput) is passed the row as a parameter, and does not
itself take rows from the input port.
If the method throws an exception, the worker will receive a Fatal status.
This class simplifies the implementation by allowing the developer to write synchronous code that operates on a single row at a time, without having to check for the availability of incoming rows.
The derived class can additionally override RunAsync()
to add logic that runs before and after all processing of rows, in which case the base class
base.RunAsync() must be called. The derived class (or its user) can also use
worker callbacks
to add logic.
Use RowWithErrorTargetBase<TDerived, TInputError> if an error output port is needed. Also see the RowTargetBase example.
Note: The input port uses the Default policy. Consider whether this is appropriate, or should be changed, see BufferingMode for further details.
Implements
Inherited Members
Namespace: actionETL
Assembly: actionETL.dll
Syntax
public abstract class RowTargetBase<TDerived, TInput> : RowsTargetBase<TDerived, TInput>, IDisposeOnFinished where TDerived : RowTargetBase<TDerived, TInput> where TInput : class
Type Parameters
| Name | Description |
|---|---|
| TDerived | The type of the derived worker. Class definition example:
|
| TInput | The type of each |
Constructors
RowTargetBase(in DownstreamFactory<TInput>, String)
Initializes a new instance of the RowTargetBase<TDerived, TInput>
abstract dataflow worker, which repeatedly executes the OnInputRow method when there are
input rows available on the Input port.
Declaration
protected RowTargetBase(in DownstreamFactory<TInput> downstreamFactory, string workerName)
Parameters
| Type | Name | Description |
|---|---|---|
| DownstreamFactory<TInput> | downstreamFactory | The downstream factory, which specifies the parent worker and (optionally) the upstream port to link the "first" input port of this dataflow worker to. Get it from Link when the upstream port is known ahead of time (which is usually the case). Otherwise get it from GetDownstreamFactory<TInput>(), and link the transform or target explicitly using LinkTo(InputPort<TOutput>) or LinkFrom(OutputPortBase<TInput>). |
| String | workerName | Name of the worker.
Set to a prefix plus a trailing
While less useful, set to
The name cannot otherwise contain |
Exceptions
| Type | Condition |
|---|---|
| ArgumentException |
|
| ArgumentNullException |
|
| InvalidOperationException |
|
Methods
OnInputRow(TInput)
An abstract method that gets called repeatedly when there is an input row available on the Input port.
Override it and process each incoming row.
Declaration
protected abstract ProgressStatus OnInputRow(TInput inputRow)
Parameters
| Type | Name | Description |
|---|---|---|
| TInput | inputRow | The incoming row. Guaranteed to not be |
Returns
| Type | Description |
|---|---|
| ProgressStatus |
|
OnInputRowsAsync()
For internal use.
Declaration
protected sealed override Task<ProgressStatus> OnInputRowsAsync()
Returns
| Type | Description |
|---|---|
| Task<ProgressStatus> |