Interface IPipeLineExitHandler

All Superinterfaces:
HasName, NameAware

public interface IPipeLineExitHandler extends NameAware, HasName
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 Type
    Method
    Description
    void
    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.HasName

    getName

    Methods inherited from interface org.frankframework.core.NameAware

    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 session
      pipeLineResult - the result of the PipeLine
      session - the PipeLineSession
      Throws:
      PipeRunException