Class AmqpItemWriter<T>
- java.lang.Object
- org.springframework.batch.item.amqp.AmqpItemWriter<T>
- All Implemented Interfaces:
ItemWriter<T>
public class AmqpItemWriter<T> extends java.lang.Object implements ItemWriter<T>
AMQP
ItemWriterimplementation using anAmqpTemplateto send messages. Messages will be sent to the nameless exchange if not specified on the providedAmqpTemplate.- Author:
- Chris Schaefer, Mahmoud Ben Hassine
Constructor Summary
Constructors Constructor Description AmqpItemWriter(org.springframework.amqp.core.AmqpTemplate amqpTemplate)
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidwrite(java.util.List<? extends T> items)Process the supplied data element.
Method Detail
write
public void write(java.util.List<? extends T> items) throws java.lang.Exception
Description copied from interface:ItemWriterProcess the supplied data element. Will not be called with any null items in normal operation.- Specified by:
writein interfaceItemWriter<T>- Parameters:
items- items to be written- Throws:
java.lang.Exception- if there are errors. The framework will catch the exception and convert or rethrow it as appropriate.