Interface RetryReadListener



  • public interface RetryReadListener
    RetryReadListener intercepts retry processing for an ItemReader.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void onRetryReadException​(java.lang.Exception ex)
      The onRetryReadException method receives control when a retryable exception is thrown from an ItemReader readItem method.
    • Method Detail

      • onRetryReadException

        void onRetryReadException​(java.lang.Exception ex)
                           throws java.lang.Exception
        The onRetryReadException method receives control when a retryable exception is thrown from an ItemReader readItem method. This method receives the exception as input. This method receives control in the same checkpoint scope as the ItemReader. If this method throws a an exception, the job ends in the FAILED state.
        Parameters:
        ex - specifies the exception thrown by the item reader.
        Throws:
        java.lang.Exception - is thrown if an error occurs.