public interface ItemReadListener
Modifier and Type | Method and Description |
---|---|
void |
afterRead(Object item)
The afterRead method receives control after an item
reader reads an item.
|
void |
beforeRead()
The beforeRead method receives control
before an item reader is called to read the next item.
|
void |
onReadError(Exception ex)
The onReadError method receives control after an item reader
throws an exception in the readItem method.
|
void beforeRead() throws Exception
Exception
- is thrown if an error occurs.void afterRead(Object item) throws Exception
item
- specifies the item read by the item reader.Exception
- is thrown if an error occurs.void onReadError(Exception ex) throws Exception
ex
- specifies the exception that occurred in the item reader.Exception
- is thrown if an error occurs.Copyright © 1996-2017, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.