Java org.springframework.batch.core.step.builder SimpleStepBuilder fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.batch.core.step.builder SimpleStepBuilder fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.batch.core.step.builder SimpleStepBuilder.

The text is from its open source code.

Field

ItemReaderreader
ItemWriterwriter
ItemProcessorprocessor
RepeatOperationschunkOperations

Constructor

SimpleStepBuilder(StepBuilderHelper parent)
Create a new builder initialized with any properties in the parent.
SimpleStepBuilder(SimpleStepBuilder parent)
Create a new builder initialized with any properties in the parent.

Method

TaskletStepbuild()
Build a step with the reader, writer, processor as provided.
SimpleStepBuilderchunk(int chunkSize)
Sets the chunk size or commit interval for this step.
SimpleStepBuilderchunk(CompletionPolicy completionPolicy)
Sets a completion policy for the chunk processing.
SimpleStepBuilderlistener(Object listener)
Registers objects using the annotation based listener configuration.
SimpleStepBuilderlistener(ItemReadListener listener)
Register an item reader listener.
SimpleStepBuilderlistener(ItemWriteListener listener)
Register an item writer listener.
SimpleStepBuilderlistener(ItemProcessListener listener)
Register an item processor listener.
SimpleStepBuilderreaderIsTransactionalQueue()
Sets a flag to say that the reader is transactional (usually a queue), which is to say that failed items might be rolled back and re-presented in a subsequent transaction.