Interface JobEventReplayHandler

All Known Implementing Classes:
DefaultBatchJobRecoveryHandler

public interface JobEventReplayHandler
The interface for process job event.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Called when finalizing replaying job event.
    void
    Called to replay one job event.
    void
    Called when starting replaying job event.
  • Method Details

    • startReplay

      void startReplay() throws Exception
      Called when starting replaying job event.
      Throws:
      Exception
    • replayOneEvent

      void replayOneEvent(JobEvent event) throws Exception
      Called to replay one job event.
      Throws:
      Exception
    • finalizeReplay

      void finalizeReplay() throws Exception
      Called when finalizing replaying job event.
      Throws:
      Exception