Interface RetryWriteListener



  • public interface RetryWriteListener
    RetryWriteListener intercepts retry processing for an ItemWriter.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void onRetryWriteException​(java.util.List<java.lang.Object> items, java.lang.Exception ex)
      The onRetryWriteException method receives control when a retryable exception is thrown from an ItemWriter writeItems method.
    • Method Detail

      • onRetryWriteException

        void onRetryWriteException​(java.util.List<java.lang.Object> items,
                                   java.lang.Exception ex)
                            throws java.lang.Exception
        The onRetryWriteException method receives control when a retryable exception is thrown from an ItemWriter writeItems method. This method receives the exception and the list of items being written as inputs. This method receives control in same checkpoint scope as the ItemWriter. If this method throws a an exception, the job ends in the FAILED state.
        Parameters:
        items - specify the items passed to an item writer.
        ex - specifies the exception thrown by an item writer.
        Throws:
        java.lang.Exception - is thrown if an error occurs.