Class RowsTargetBase<TDerived, TInput, TError>
An abstract dataflow worker which repeatedly executes the
OnInputRowsAsync() method when there are input rows
available on the Input port. The library user must inherit this class and override
OnInputRowsAsync to provide custom functionality. It also has an ErrorOutput port.
This class allows the developer to write synchronous or asynchronous code as needed, without having to check for availability of input rows (which simplifies the implementation), as long as more no rows than are available are taken (typically by taking multiple rows at a time, e.g. via TakeBufferAsync(TInput[])).
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 RowsTargetBase<TDerived, TInput> instead if an ErrorOutput port is not needed.
Also see the
RowsTargetBase
example.
Note: The input port uses the Default policy. Consider whether this is appropriate, or should be changed, see BufferingMode for further details.
Inheritance
Implements
Inherited Members
Namespace: actionETL
Assembly: actionETL.dll
Syntax
public abstract class RowsTargetBase<TDerived, TInput, TError> : RowsTargetBase<TDerived, TInput>, IDisposeOnFinished where TDerived : RowsTargetBase<TDerived, TInput, TError> where TInput : class where TError : class
Type Parameters
| Name | Description |
|---|---|
| TDerived | The type of the derived worker. Class definition example:
|
| TInput | The type of each |
| TError | The type of each |
Constructors
RowsTargetBase(in DownstreamFactory<TInput>, String)
Initializes a new instance of the RowsTargetBase<TDerived, TInput, TError>
abstract dataflow worker, which repeatedly executes the OnInputRowsAsync method when there are
input rows available on the Input port.
Declaration
protected RowsTargetBase(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 |
|
Properties
ErrorOutput
Gets the error output port for sending error rows to logging and an optional downstream worker.
Declaration
public ErrorOutputPort<TError> ErrorOutput { get; }
Property Value
| Type | Description |
|---|---|
| ErrorOutputPort<TError> |