public interface LoaderContext
A context object that provides information about a loader's current state to
 
LoaderRowListener.- Author:
- Lukas Eder
- 
Method SummaryModifier and TypeMethodDescription@NotNull 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.intThe number of processed rows.@Nullable Object @NotNull []row()The row that will be or has been processed.@NotNull LoaderContextOverride the row that will be processed.intstored()The number of inserted or updated rows.
- 
Method Details- 
rowOverride the row that will be processed. Changing it has now effect on theLoaderListenerStep.onRowEnd(LoaderRowListener)event.
- 
rowThe row that will be or has been processed.
- 
errorsA list of errors that might have happened during the load.
- 
processedint processed()The number of processed rows.
- 
executedint executed()The number of executed statements, bulk statements, or batch statements.
- 
ignoredint ignored()The number of ignored rows.
- 
storedint stored()The number of inserted or updated rows.
 
-