类 JsrChunkProcessor<I,​O>

  • 类型参数:
    I - The input type for the step
    O - The output type for the step
    所有已实现的接口:
    ChunkProcessor<I>
    直接已知子类:
    JsrFaultTolerantChunkProcessor

    public class JsrChunkProcessor<I,​O>
    extends java.lang.Object
    implements ChunkProcessor<I>
    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).
    作者:
    Michael Minella