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.
Components for remote chunking.
Remote partitioning 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) Build a step that processes items in chunks with the size provided.<I,O> SimpleStepBuilder<I, O> StepBuilder.chunk(CompletionPolicy completionPolicy) 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.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.AFunctionto be delegated to as anItemProcessor.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.SimpleStepBuilder.writer(ItemWriter<? super O> writer) An item writer that writes a chunk of items.Methods in org.springframework.batch.core.step.builder that return types with arguments of type SimpleStepBuilderModifier and TypeMethodDescriptionFaultTolerantStepBuilder.stream(ItemStream stream) FaultTolerantStepBuilder.transactionAttribute(org.springframework.transaction.interceptor.TransactionAttribute transactionAttribute) 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) -
Uses of SimpleStepBuilder in org.springframework.batch.integration.chunk
Subclasses of SimpleStepBuilder in org.springframework.batch.integration.chunkModifier and TypeClassDescriptionclassBuilder for a manager step in a remote chunking setup. -
Uses of SimpleStepBuilder in org.springframework.batch.integration.partition
Methods in org.springframework.batch.integration.partition that return SimpleStepBuilderModifier and TypeMethodDescription<I,O> SimpleStepBuilder<I, O> RemotePartitioningWorkerStepBuilder.chunk(int chunkSize) <I,O> SimpleStepBuilder<I, O> RemotePartitioningWorkerStepBuilder.chunk(CompletionPolicy completionPolicy)