Class ConsumerItemWriter<T>
java.lang.Object
org.springframework.batch.item.function.ConsumerItemWriter<T>
- Type Parameters:
T
- type of items to write
- All Implemented Interfaces:
ItemWriter<T>
Adapter for a
Consumer
to an ItemWriter
.- Since:
- 5.2
- Author:
- Mahmoud Ben Hassine
-
Constructor Summary
-
Method Summary
-
Constructor Details
-
ConsumerItemWriter
Create a newConsumerItemWriter
.- Parameters:
consumer
- the consumer to use to write items. Must not benull
.
-
-
Method Details
-
write
Description copied from interface:ItemWriter
Process the supplied data element. Will not be called with any null items in normal operation.- Specified by:
write
in interfaceItemWriter<T>
- Parameters:
items
- of items to be written. Must not benull
.- Throws:
Exception
- if there are errors. The framework will catch the exception and convert or rethrow it as appropriate.
-