Package org.pentaho.di.trans.steps.file
Interface IBaseFileInputStepControl
-
- All Known Implementing Classes:
BaseFileInputStep,TextFileInput
public interface IBaseFileInputStepControlInterface for some step operations required for parse input file.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancheckFeedback(long lines)booleanfailAfterBadFile(String errorMsg)longgetErrors()longgetLinesInput()longgetLinesWritten()longincrementLinesInput()longincrementLinesUpdated()voidputRow(org.pentaho.di.core.row.RowMetaInterface rowMeta, Object[] row)voidsetErrors(long e)voidstopAll()
-
-
-
Method Detail
-
incrementLinesInput
long incrementLinesInput()
-
getLinesWritten
long getLinesWritten()
-
putRow
void putRow(org.pentaho.di.core.row.RowMetaInterface rowMeta, Object[] row) throws org.pentaho.di.core.exception.KettleStepException- Throws:
org.pentaho.di.core.exception.KettleStepException
-
getLinesInput
long getLinesInput()
-
checkFeedback
boolean checkFeedback(long lines)
-
incrementLinesUpdated
long incrementLinesUpdated()
-
failAfterBadFile
boolean failAfterBadFile(String errorMsg)
-
stopAll
void stopAll()
-
getErrors
long getErrors()
-
setErrors
void setErrors(long e)
-
-