Interface IDataFlowLogging

Namespace: ETLBox
Assembly: ETLBox.dll
Syntax
    public interface IDataFlowLogging

Properties

LogThreshold

To avoid getting log message for every message, by default only log message are produced when 1000 rows are processed. Set this property to decrease or increase this value.

Declaration
    int? LogThreshold { get; set; }
Property Value
TypeDescription
int?

OnProgress

This delegate is invoked each time the progress counter changes

Declaration
    Action<int> OnProgress { get; set; }
Property Value
TypeDescription
Action<int>

ProgressCount

The amount of rows the current component has already processed.

Declaration
    int ProgressCount { get; }
Property Value
TypeDescription
int