C# Class FdoToolbox.Core.ETL.Specialized.FdoSpecializedEtlProcess

A specialized form of ETL process.
Inheritance: EtlProcess, IFdoSpecializedEtlProcess
ファイルを表示 Open project: jumpinjackie/fdotoolbox

Public Methods

Method Description
GetDescription ( ) : string

Gets a description of this process

GetFileExtension ( ) : string

Gets the file extension associated with this process. For tasks where CanSave is false, an empty string is returned

Save ( string file, string name ) : void

Saves this process to a file

ToEtlProcess ( ) : EtlProcess

Casts this to a EtlProcess

UpdateConnectionReferences ( string oldName, string newName ) : void

Updates affected connection references. Does nothing if the process does not hold connection name references

Protected Methods

Method Description
FireFeatureProcessed ( int count ) : void

Fires the feature processed.

OnFeatureProcessed ( FdoToolbox op, FdoRow dictionary ) : void

Called when a row is processed.

OnFinishedProcessing ( FdoToolbox op ) : void

Called when this process has finished processing.

OnProcessCompleted ( ) : void

Called when the process has completed

Method Details

FireFeatureProcessed() protected method

Fires the feature processed.
protected FireFeatureProcessed ( int count ) : void
count int The count.
return void

GetDescription() public method

Gets a description of this process
public GetDescription ( ) : string
return string

GetFileExtension() public method

Gets the file extension associated with this process. For tasks where CanSave is false, an empty string is returned
public GetFileExtension ( ) : string
return string

OnFeatureProcessed() protected method

Called when a row is processed.
protected OnFeatureProcessed ( FdoToolbox op, FdoRow dictionary ) : void
op FdoToolbox The operation.
dictionary FdoRow The dictionary.
return void

OnFinishedProcessing() protected method

Called when this process has finished processing.
protected OnFinishedProcessing ( FdoToolbox op ) : void
op FdoToolbox The op.
return void

OnProcessCompleted() protected method

Called when the process has completed
protected OnProcessCompleted ( ) : void
return void

Save() public method

Saves this process to a file
public Save ( string file, string name ) : void
file string The file to save this process to
name string The name of the process
return void

ToEtlProcess() public method

Casts this to a EtlProcess
public ToEtlProcess ( ) : EtlProcess
return EtlProcess

UpdateConnectionReferences() public method

Updates affected connection references. Does nothing if the process does not hold connection name references
public UpdateConnectionReferences ( string oldName, string newName ) : void
oldName string
newName string
return void