Uses of Interface
org.springframework.batch.repeat.RepeatCallback
Packages that use RepeatCallback
Package
Description
Implementation of the contexts for each of the custom bean scopes in Spring Batch (Job
and Step).
Infrastructure implementations of repeat concerns.
Infrastructure implementations of repeat callback concerns.
Infrastructure implementations of repeat support concerns.
-
Uses of RepeatCallback in org.springframework.batch.core.scope.context
Classes in org.springframework.batch.core.scope.context that implement RepeatCallbackModifier and TypeClassDescriptionclass
Convenient base class for clients who need to do something in a repeat callback inside aStep
. -
Uses of RepeatCallback in org.springframework.batch.repeat
Methods in org.springframework.batch.repeat with parameters of type RepeatCallbackModifier and TypeMethodDescriptionRepeatOperations.iterate
(RepeatCallback callback) Execute the callback repeatedly, until a decision can be made to complete. -
Uses of RepeatCallback in org.springframework.batch.repeat.callback
Classes in org.springframework.batch.repeat.callback that implement RepeatCallbackModifier and TypeClassDescriptionclass
Callback that delegates to another callback, via aRepeatOperations
instance.Constructors in org.springframework.batch.repeat.callback with parameters of type RepeatCallbackModifierConstructorDescriptionNestedRepeatCallback
(RepeatOperations template, RepeatCallback callback) Constructor setting mandatory fields. -
Uses of RepeatCallback in org.springframework.batch.repeat.support
Methods in org.springframework.batch.repeat.support with parameters of type RepeatCallbackModifier and TypeMethodDescriptionprotected RepeatStatus
RepeatTemplate.getNextResult
(RepeatContext context, RepeatCallback callback, RepeatInternalState state) Get the next completed result, possibly executing several callbacks until one finally finishes.protected RepeatStatus
TaskExecutorRepeatTemplate.getNextResult
(RepeatContext context, RepeatCallback callback, RepeatInternalState state) Use theTaskExecutorRepeatTemplate.setTaskExecutor(TaskExecutor)
to generate a result.RepeatTemplate.iterate
(RepeatCallback callback) Execute the batch callback until the completion policy decides that we are finished.