Interface IDataFlowStreamSource<TOutput>
Implemented by data flow sources that allow reading data from a stream source
Inherited Members
Namespace: ETLBox
Assembly: ETLBox.dll
Syntax
public interface IDataFlowStreamSource<TOutput> : IDataFlowExecutableSource<TOutput>, IDataFlowSource<TOutput>, IDataFlowStreamSource, IDataFlowExecutableSource, IDataFlowSource, IDataFlowComponent
Type Parameters
Name | Description |
---|---|
TOutput | Type of outgoing data |
Properties
RowModificationAction
Allows you to modify a record directly after it is read from the source and before it is send to the next component. While processing of data in other components can happen asynchronously, the execution of this action is synchronous and always occurs after each record was read and before a new record is read.
Declaration
Action<TOutput, StreamMetaData> RowModificationAction { get; set; }
Property Value
Type | Description |
---|---|
System.Action<T1, T2><TOutput, StreamMetaData> |