Uses of Interface
org.springframework.batch.repeat.RepeatOperations
Package
Description
Step level builders for java based job configuration.
Factories for step level components.
Specific implementations of step concerns for item-oriented approach.
Interfaces and generic implementations of tasklet concerns.
Components for remote chunking.
Infrastructure implementations of repeat callback concerns.
Infrastructure implementations of repeat aop concerns.
Infrastructure implementations of repeat support concerns.
-
Uses of RepeatOperations in org.springframework.batch.core.step.builder
Modifier and TypeMethodDescriptionprotected RepeatOperations
SimpleStepBuilder.createChunkOperations()
protected RepeatOperations
AbstractTaskletStepBuilder.getStepOperations()
Convenience method for subclasses to access the step operations that were injected by user.Modifier and TypeMethodDescriptionSimpleStepBuilder.chunkOperations
(RepeatOperations repeatTemplate) Instead of achunk size
orcompletion policy
you can provide a complete repeat operations instance that handles the iteration over the item reader.AbstractTaskletStepBuilder.stepOperations
(RepeatOperations repeatTemplate) Sets the repeat template used for iterating the tasklet execution. -
Uses of RepeatOperations in org.springframework.batch.core.step.factory
Modifier and TypeMethodDescriptionprotected RepeatOperations
SimpleStepFactoryBean.getChunkOperations()
Protected getter for the chunk operations to make them available in subclasses.protected RepeatOperations
SimpleStepFactoryBean.getStepOperations()
Protected getter for the step operations to make them available in subclasses.Modifier and TypeMethodDescriptionvoid
SimpleStepFactoryBean.setChunkOperations
(RepeatOperations chunkOperations) Public setter for the chunkOperations.void
SimpleStepFactoryBean.setStepOperations
(RepeatOperations stepOperations) Public setter for the stepOperations. -
Uses of RepeatOperations in org.springframework.batch.core.step.item
ModifierConstructorDescriptionFaultTolerantChunkProvider
(ItemReader<? extends I> itemReader, RepeatOperations repeatOperations) SimpleChunkProvider
(ItemReader<? extends I> itemReader, RepeatOperations repeatOperations) -
Uses of RepeatOperations in org.springframework.batch.core.step.tasklet
Modifier and TypeMethodDescriptionvoid
TaskletStep.setStepOperations
(RepeatOperations stepOperations) TheRepeatOperations
to use for the outer loop of the batch processing. -
Uses of RepeatOperations in org.springframework.batch.integration.chunk
Modifier and TypeMethodDescriptionRemoteChunkingManagerStepBuilder.chunkOperations
(RepeatOperations repeatTemplate) RemoteChunkingManagerStepBuilder.stepOperations
(RepeatOperations repeatTemplate) -
Uses of RepeatOperations in org.springframework.batch.repeat.callback
ModifierConstructorDescriptionNestedRepeatCallback
(RepeatOperations template, RepeatCallback callback) Constructor setting mandatory fields. -
Uses of RepeatOperations in org.springframework.batch.repeat.interceptor
Modifier and TypeMethodDescriptionvoid
RepeatOperationsInterceptor.setRepeatOperations
(RepeatOperations batchTemplate) Setter for theRepeatOperations
. -
Uses of RepeatOperations in org.springframework.batch.repeat.support
Modifier and TypeClassDescriptionclass
Simple implementation and base class for batch templates implementingRepeatOperations
.class
ProvidesRepeatOperations
support including interceptors that can be used to modify or monitor the behaviour at run time.
This implementation is sufficient to be used to configure transactional behaviour for each item by making theRepeatCallback
transactional, or for the whole batch by making the execute method transactional (but only then if the task executor is synchronous).
This class is thread-safe if its collaborators are thread-safe (interceptors, terminationPolicy, callback).