Closed
Description
chapter Spring Batch Integration/Sub-elements/Asynchronous Processors
Asynchronous Processors help you scale the processing of items. In the asynchronous processor use case, an AsyncItemProcessor serves as a dispatcher, executing the logic of the ItemProcessor for an item on a new thread. Once the item completes, the Future is passed to the AsynchItemWriter to be written.
wrong: AsynchItemWriter
correct: AsyncItemWriter