Package | Description |
---|---|
org.springframework.batch.core.scope.context | |
org.springframework.batch.core.step.item |
Specific implementations of step concerns for item-oriented approach.
|
org.springframework.batch.core.step.tasklet |
Interfaces and generic implementations of tasklet concerns.
|
Modifier and Type | Method and Description |
---|---|
abstract RepeatStatus |
StepContextRepeatCallback.doInChunkContext(RepeatContext context,
ChunkContext chunkContext)
Do the work required for this chunk of the step.
|
Modifier and Type | Method and Description |
---|---|
RepeatStatus |
ChunkOrientedTasklet.execute(StepContribution contribution,
ChunkContext chunkContext) |
Modifier and Type | Method and Description |
---|---|
RepeatStatus |
SystemCommandTasklet.execute(StepContribution contribution,
ChunkContext chunkContext)
Execute system command and map its exit code to
ExitStatus using
SystemProcessExitCodeMapper . |
RepeatStatus |
CallableTaskletAdapter.execute(StepContribution contribution,
ChunkContext chunkContext)
Execute the provided Callable and return its
RepeatStatus . |
RepeatStatus |
Tasklet.execute(StepContribution contribution,
ChunkContext chunkContext)
Given the current context in the form of a step contribution, do whatever
is necessary to process this unit inside a transaction.
|
RepeatStatus |
MethodInvokingTaskletAdapter.execute(StepContribution contribution,
ChunkContext chunkContext)
Delegate execution to the target object and translate the return value to
an
ExitStatus by invoking a method in the delegate POJO. |
Copyright © 2013 SpringSource. All rights reserved.