Package jakarta.batch.api.chunk.listener
Interface RetryWriteListener
-
public interface RetryWriteListenerRetryWriteListener intercepts retry processing for an ItemWriter.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonRetryWriteException(List<Object> items, Exception ex)The onRetryWriteException method receives control when a retryable exception is thrown from an ItemWriter writeItems method.
-
-
-
Method Detail
-
onRetryWriteException
void onRetryWriteException(List<Object> items, Exception ex) throws 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:
Exception- is thrown if an error occurs.
-
-