public interface PipelineListener
| Modifier and Type | Method and Description |
|---|---|
void |
afterRecordProcessing(Record inputRecord,
Record outputRecord)
Called after the record has been processed.
|
Record |
beforeRecordProcessing(Record record)
Called before the record gets processed.
|
void |
onRecordProcessingException(Record record,
Throwable throwable)
Called when an exception occurs during record processing
|
Record beforeRecordProcessing(Record record)
record - The record that will be processed.void afterRecordProcessing(Record inputRecord, Record outputRecord)
inputRecord - The record to process.outputRecord - The processed record. May be null if the record has been filteredCopyright © 2015. All Rights Reserved.