javax.batch.api.chunk.listener
Interface SkipProcessListener<T>
- Type Parameters:
T - specifies the item type processed
by the ItemProcessor.
public interface SkipProcessListener<T>
SkipProcessListener intercepts skippable
itemProcess exception handling.
|
Method Summary |
void |
onSkipProcessItem(T item,
Exception ex)
The onSkipProcessItem method receives control when
a skippable exception is thrown from an ItemProcess
processItem method. |
onSkipProcessItem
void onSkipProcessItem(T item,
Exception ex)
throws Exception
- The onSkipProcessItem method receives control when
a skippable exception is thrown from an ItemProcess
processItem method.
This method receives the exception and the item to process
as an input.
- Parameters:
item - specifies the item passed to the ItemProcessor.ex - specifies the exception thrown by the
ItemProcessor.
- Throws:
Exception - is thrown if an error occurs.
Copyright © 2013. All Rights Reserved.