Example #1
0
 private void InitRowTransformationManually()
 {
     RowTransformation.TransformationFunc = RenameProperties;
     RowTransformation.CopyLogTaskProperties(this);
     RowTransformation.MaxBufferSize = this.MaxBufferSize;
     RowTransformation.InitBufferObjects();
 }
Example #2
0
 private void InitRowTransformationManually(Action initAction)
 {
     RowTransformation.TransformationFunc = TransformationFunc;
     RowTransformation.CopyLogTaskProperties(this);
     RowTransformation.InitAction    = initAction;
     RowTransformation.MaxBufferSize = this.MaxBufferSize;
     RowTransformation.InitBufferObjects();
 }