-
public interface LoaderContextA context object that provides information about a loader's current state toLoaderRowListener.- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<LoaderError>errors()A list of errors that might have happened during the load.intexecuted()The number of executed statements, bulk statements, or batch statements.intignored()The number of ignored rows.intprocessed()The number of processed rows.intstored()The number of inserted or updated rows.
-
-
-
Method Detail
-
errors
List<LoaderError> errors()
A list of errors that might have happened during the load.
-
processed
int processed()
The number of processed rows.
-
executed
int executed()
The number of executed statements, bulk statements, or batch statements.
-
ignored
int ignored()
The number of ignored rows.
-
stored
int stored()
The number of inserted or updated rows.
-
-