Package org.frankframework.core
Interface IPipeLineExitHandler
- All Superinterfaces:
INamedObject
Interface that allows a Pipe to register an exit handler.
This handler will be called always after PipeLine-processing has finished
- Since:
- 4.6.0
- Author:
- Gerrit van Brakel
-
Method Summary
Modifier and TypeMethodDescriptionvoid
atEndOfPipeLine
(String correlationId, PipeLineResult pipeLineResult, PipeLineSession session) Called to allow registered handler to perform cleanup or commit/rollback.Methods inherited from interface org.frankframework.core.INamedObject
getName, setName
-
Method Details
-
atEndOfPipeLine
void atEndOfPipeLine(String correlationId, PipeLineResult pipeLineResult, PipeLineSession session) throws PipeRunException Called to allow registered handler to perform cleanup or commit/rollback.- Parameters:
correlationId
- correlationId of current sessionpipeLineResult
- the result of the PipeLinesession
- the PipeLineSession- Throws:
PipeRunException
-