Example usage for org.springframework.batch.core.step.item ChunkProcessor interface-usage

List of usage examples for org.springframework.batch.core.step.item ChunkProcessor interface-usage

Introduction

In this page you can find the example usage for org.springframework.batch.core.step.item ChunkProcessor interface-usage.

Usage

From source file es.fcs.batch.integration.chunk.SerializableChunkProcessor.java

/**
 * 
 * @author Alois Cochard
 */
public class SerializableChunkProcessor<I, O> implements ChunkProcessor<I>, InitializingBean, Serializable {

From source file org.springframework.batch.core.jsr.step.item.JsrChunkProcessor.java

/**
 * {@link ChunkProcessor} implementation that implements JSR-352's chunking pattern
 * (read and process in a loop until the chunk is complete then write).  This
 * implementation is responsible for all three phases of chunk based processing
 * (reading, processing and writing).
 *