IEtlTaskExecutionEvents.OnEndTask

Syntax

OnEndTask(Task: IEtlTask;

          Duration: Integer;

          TotalRec: Integer;

          ErrorRec: Integer);

Parameters

Task. ETL task.

Duration. Block execution time in milliseconds.

TotalRecIn. Number of records at input.

TotalRecOut. Number of records at output.

ErrorRec. Number of skipped error records at output.

Description

The OnEndTask method implements ETL task finish event.

Comments

To implement the event that occurs on ETL task start, use IEtlTaskExecutionEvents.OnStartTask.

Example

The method use is given in the example for IEtlTaskExecutionEvents.OnEndBlock.

See also:

IEtlTaskExecutionEvents