Class BlockingQueueItemWriter<T>

java.lang.Object
org.springframework.batch.item.queue.BlockingQueueItemWriter<T>
Type Parameters:
T - type of items to write
All Implemented Interfaces:
ItemWriter<T>

public class BlockingQueueItemWriter<T> extends Object implements ItemWriter<T>
This is an ItemWriter that writes items to a BlockingQueue.
Since:
5.2.0
Author:
Mahmoud Ben Hassine
  • Constructor Details

  • Method Details

    • write

      public void write(Chunk<? extends T> items) throws Exception
      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 interface ItemWriter<T>
      Parameters:
      items - of items to be written. Must not be null.
      Throws:
      Exception - if there are errors. The framework will catch the exception and convert or rethrow it as appropriate.