Interface ItemWriter<T>
- All Known Subinterfaces:
ItemStreamWriter<T>, ResourceAwareItemWriterItemStream<T>
- All Known Implementing Classes:
AbstractFileItemWriter, AbstractItemStreamItemWriter, AmqpItemWriter, AsyncItemWriter, AvroItemWriter, BlockingQueueItemWriter, ChunkMessageChannelItemWriter, ChunkTaskExecutorItemWriter, ClassifierCompositeItemWriter, CompositeItemWriter, ConsumerItemWriter, FlatFileItemWriter, ItemWriterAdapter, JdbcBatchItemWriter, JmsItemWriter, JpaItemWriter, JsonFileItemWriter, KafkaItemWriter, KeyValueItemWriter, ListItemWriter, MappingItemWriter, MessageChannelItemWriter, MimeMessageItemWriter, MongoItemWriter, MultiResourceItemWriter, PropertyExtractingDelegatingItemWriter, RedisItemWriter, RepositoryItemWriter, SimpleMailMessageItemWriter, StaxEventItemWriter, SynchronizedItemStreamWriter, SynchronizedItemWriter
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Basic interface for generic output operations. Class implementing this interface will be responsible for serializing objects as necessary. Generally, it is responsibility of implementing class to decide which technology to use for mapping and how it should be configured.
The write method is responsible for making sure that any internal buffers are flushed. If a transaction is active it will also usually be necessary to discard the output on a subsequent rollback. The resource to which the writer is sending data should normally be able to handle this itself.
- Author:
- Dave Syer, Lucas Ward, Taeik Lim, Mahmoud Ben Hassine
-
Method Summary
-
Method Details
-
write
Process the supplied data element. Will not be called with any null items in normal operation but might be called with an empty chunk, for example when all items have been filtered by anItemProcessoror skipped by the fault-tolerant step processing. Implementations are expected to handle empty chunks gracefully.- Parameters:
chunk- of items to be written. Nevernullbut may be empty.- Throws:
Exception- if there are errors. The framework will catch the exception and convert or rethrow it as appropriate.
-