Package org.pentaho.di.trans.steps.file
Interface IBaseFileInputStepControl
-
- All Known Implementing Classes:
BaseFileInputStep
,TextFileInput
public interface IBaseFileInputStepControl
Interface for some step operations required for parse input file.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
checkFeedback(long lines)
boolean
failAfterBadFile(String errorMsg)
long
getErrors()
long
getLinesInput()
long
getLinesWritten()
long
incrementLinesInput()
long
incrementLinesUpdated()
void
putRow(org.pentaho.di.core.row.RowMetaInterface rowMeta, Object[] row)
void
setErrors(long e)
void
stopAll()
-
-
-
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)
-
-