|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.springframework.batch.core.scope.context.StepContextRepeatCallback
public abstract class StepContextRepeatCallback
Convenient base class for clients who need to do something in a repeat
callback inside a Step.
| Constructor Summary | |
|---|---|
StepContextRepeatCallback(StepExecution stepExecution)
|
|
| Method Summary | |
|---|---|
abstract RepeatStatus |
doInChunkContext(RepeatContext context,
ChunkContext chunkContext)
Do the work required for this chunk of the step. |
RepeatStatus |
doInIteration(RepeatContext context)
Manage the StepContext lifecycle. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public StepContextRepeatCallback(StepExecution stepExecution)
stepExecution - | Method Detail |
|---|
public RepeatStatus doInIteration(RepeatContext context)
throws java.lang.Exception
StepContext lifecycle. Business processing should be
delegated to doInChunkContext(RepeatContext, ChunkContext). This
is to ensure that the current thread has a reference to the context, even
if the callback is executed in a pooled thread. Handles the registration
and de-registration of the step context, so clients should not duplicate
those calls.
doInIteration in interface RepeatCallbackjava.lang.ExceptionRepeatCallback.doInIteration(RepeatContext)
public abstract RepeatStatus doInChunkContext(RepeatContext context,
ChunkContext chunkContext)
throws java.lang.Exception
ChunkContext
provided is managed by the base class, so that if there is still work to
do for the task in hand state can be stored here. In a multi-threaded
client, the base class ensures that only one thread at a time can be
working on each instance of ChunkContext. Workers should signal
that they are finished with a context by removing all the attributes they
have added. If a worker does not remove them another thread might see
stale state.
context - the current RepeatContextchunkContext - the chunk context in which to carry out the work
java.lang.Exception - implementations can throw an exception if anything goes
wrong
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||