IEtlExecutionCallback.OnObject

Syntax

OnObject(Object: IEtlObject);

Parameters

Object. ETL task object.

Description

The OnObject method implements an ETL task object execution event.

Example

Executing the example requires that the repository contains an ETL task with the ETL identifier, in which connectors to data provider and data consumer are set up. A link should be set up between the connectors.

Public Class MyClass: Object, IEtlExecutionCallback
    Sub OnObject(Object: IEtlObject);
    Begin
        Debug.WriteLine("Object is being executed: " + Object.Id);
    End Sub OnObject;
 
    Sub OnProgress(Progress: Integer);
    Begin
        Debug.WriteLine("Executed: " + Progress.ToString + "%");
    End Sub OnProgress;
    
    Sub OnSetResult(nTotalRec: Integer; nErrorRec: Integer);
    Begin
        Debug.WriteLine("Total records handled: " + nTotalRec.ToString);
        Debug.WriteLine("Records skipped: " + nErrorRec.ToString);
    End Sub OnSetResult;
End Class MyClass;

Sub UserProc;
Var
    MB: IMetabase;
    Etltask: IEtlTask;
    C: MyClass;
Begin
    MB := MetabaseClass.Active;
    Etltask := MB.ItemById("ETL").Bind As IEtlTask;
    C := New MyClass.Create;
    Etltask.Execute(C);
End Sub UserProc;

After executing the example ETL task execution is started. Information about execution status and the current object is displayed in the development environment console. After finishing the task the number of processed and skipped records is displayed.

See also:

IEtlExecutionCallback