Files
spring-batch/build/reference-epub-work/ch03s08.xhtml
Michael Minella 75ab909314 update
2017-03-23 10:18:33 -05:00

13 lines
1.6 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml" xmlns:epub="http://www.idpf.org/2007/ops" xmlns:m="http://www.w3.org/1998/Math/MathML" xmlns:pls="http://www.w3.org/2005/01/pronunciation-lexicon" xmlns:ssml="http://www.w3.org/2001/10/synthesis" xmlns:svg="http://www.w3.org/2000/svg"><head><title>Item Processor</title><link rel="stylesheet" type="text/css" href="docbook-epub.css"/><meta name="generator" content="DocBook XSL Stylesheets V1.78.1"/><link rel="prev" href="ch03s07.xhtml" title="Item Writer"/><link rel="next" href="ch03s09.xhtml" title="Batch Namespace"/></head><body><header/><section class="section" title="Item Processor" epub:type="subchapter" id="domainItemProcessor"><div class="titlepage"><div><div><h2 class="title" style="clear: both">Item Processor</h2></div></div></div>
<p><code class="classname">ItemProcessor</code> is an abstraction that
represents the business processing of an item. While the
<code class="classname">ItemReader</code> reads one item, and the
<code class="classname">ItemWriter</code> writes them, the
<code class="classname">ItemProcessor</code> provides access to transform or apply
other business processing. If, while processing the item, it is determined
that the item is not valid, returning null indicates that the item should
not be written out. More details about the ItemProcessor interface can be
found in <a class="xref" href="ch06.xhtml" title="Chapter 6. ItemReaders and ItemWriters">Chapter 6, <em>ItemReaders and ItemWriters</em></a>.</p>
</section><footer/></body></html>