The OnIntervalComplete method is a progress indicator event sink that a custom application can use to indicate progress during a transformation.
HRESULT OnIntervalComplete (
LPBYTE pvExecUserData,
ULARGE_INTEGER uliRowsComplete,
BOOL *pbAbort );
Argument | Description |
---|---|
pvExecUserData [in] | User data pointer passed to IDTSDataPump::Execute |
uliRowsComplete [in] | Total source rows processed during the current transformation, including those skipped |
*pbAbort [out] | Indicates whether to terminate transformation execution; set to TRUE by the event sink to terminate IDTSDataPump::Execute |