Uses of Class
org.springframework.batch.core.step.builder.SimpleStepBuilder
Packages that use SimpleStepBuilder
Package
Description
Parsers for XML based configuration
Step level builders for java based job configuration.
Factories for step level components.
-
Uses of SimpleStepBuilder in org.springframework.batch.core.configuration.xml
Methods in org.springframework.batch.core.configuration.xml that return SimpleStepBuilderModifier and TypeMethodDescriptionprotected SimpleStepBuilder<I,O> StepParserStepFactoryBean.getSimpleStepBuilder(String stepName) Methods in org.springframework.batch.core.configuration.xml with parameters of type SimpleStepBuilderModifier and TypeMethodDescriptionprotected voidStepParserStepFactoryBean.registerItemListeners(SimpleStepBuilder<I, O> builder) protected voidStepParserStepFactoryBean.setChunk(SimpleStepBuilder<I, O> builder) -
Uses of SimpleStepBuilder in org.springframework.batch.core.step.builder
Subclasses of SimpleStepBuilder in org.springframework.batch.core.step.builderModifier and TypeClassDescriptionclassA step builder for fully fault tolerant chunk-oriented item processing steps.Methods in org.springframework.batch.core.step.builder that return SimpleStepBuilderModifier and TypeMethodDescriptionSimpleStepBuilder.chunk(int chunkSize) Sets the chunk size or commit interval for this step.SimpleStepBuilder.chunk(CompletionPolicy completionPolicy) Sets a completion policy for the chunk processing.<I,O> SimpleStepBuilder<I, O> StepBuilder.chunk(int chunkSize) Deprecated.<I,O> SimpleStepBuilder<I, O> StepBuilder.chunk(int chunkSize, org.springframework.transaction.PlatformTransactionManager transactionManager) Build a step that processes items in chunks with the size provided.<I,O> SimpleStepBuilder<I, O> StepBuilder.chunk(CompletionPolicy completionPolicy) Deprecated.<I,O> SimpleStepBuilder<I, O> StepBuilder.chunk(CompletionPolicy completionPolicy, org.springframework.transaction.PlatformTransactionManager transactionManager) Build a step that processes items in chunks with the completion policy provided.SimpleStepBuilder.chunkOperations(RepeatOperations repeatTemplate) Instead of achunk sizeorcompletion policyyou can provide a complete repeat operations instance that handles the iteration over the item reader.Registers objects using the annotation based listener configuration.SimpleStepBuilder.listener(ItemProcessListener<? super I, ? super O> listener) Register an item processor listener.SimpleStepBuilder.listener(ItemReadListener<? super I> listener) Register an item reader listener.SimpleStepBuilder.listener(ItemWriteListener<? super O> listener) Register an item writer listener.SimpleStepBuilder.processor(ItemProcessor<? super I, ? extends O> processor) An item processor that processes or transforms a stream of items.SimpleStepBuilder.reader(ItemReader<? extends I> reader) An item reader that provides a stream of items.SimpleStepBuilder.readerIsTransactionalQueue()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.protected SimpleStepBuilder<I,O> SimpleStepBuilder.self()FaultTolerantStepBuilder.stream(ItemStream stream) FaultTolerantStepBuilder.transactionAttribute(org.springframework.transaction.interceptor.TransactionAttribute transactionAttribute) SimpleStepBuilder.writer(ItemWriter<? super O> writer) An item writer that writes a chunk of items.Constructors in org.springframework.batch.core.step.builder with parameters of type SimpleStepBuilderModifierConstructorDescriptionprotectedFaultTolerantStepBuilder(SimpleStepBuilder<I, O> parent) Create a new builder initialized with any properties in the parent.protectedSimpleStepBuilder(SimpleStepBuilder<I, O> parent) Create a new builder initialized with any properties in the parent. -
Uses of SimpleStepBuilder in org.springframework.batch.core.step.factory
Methods in org.springframework.batch.core.step.factory that return SimpleStepBuilderModifier and TypeMethodDescriptionprotected SimpleStepBuilder<T,S> FaultTolerantStepFactoryBean.createBuilder(String name) protected SimpleStepBuilder<T,S> SimpleStepFactoryBean.createBuilder(String name) Methods in org.springframework.batch.core.step.factory with parameters of type SimpleStepBuilderModifier and TypeMethodDescriptionprotected voidFaultTolerantStepFactoryBean.applyConfiguration(SimpleStepBuilder<T, S> builder) protected voidSimpleStepFactoryBean.applyConfiguration(SimpleStepBuilder<T, S> builder)
StepBuilder.chunk(int, PlatformTransactionManager)