public interface ItemProcessor<I,O>
Modifier and Type | Method and Description |
---|---|
O |
process(I item)
Process the provided item, returning a potentially modified or new item for continued
processing.
|
O process(I item) throws java.lang.Exception
item
- to be processedjava.lang.Exception
- thrown if exception occurs during processing.