public interface RepeatListener
| Modifier and Type | Method and Description |
|---|---|
void |
after(RepeatContext context,
RepeatStatus result)
Called by the framework after each item has been processed, unless the
item processing results in an exception.
|
void |
before(RepeatContext context)
Called by the framework before each batch item.
|
void |
close(RepeatContext context)
Called once at the end of a complete batch, after normal or abnormal
completion (i.e.
|
void |
onError(RepeatContext context,
java.lang.Throwable e)
Called when a repeat callback fails by throwing an exception.
|
void |
open(RepeatContext context)
Called once at the start of a complete batch, before any items are
processed.
|
void before(RepeatContext context)
context - the current batch context.void after(RepeatContext context, RepeatStatus result)
context - the current batch contextresult - the result of the callbackvoid open(RepeatContext context)
context - the current batch contextvoid onError(RepeatContext context, java.lang.Throwable e)
context - the current batch contexte - the error that was encountered in an item callback.void close(RepeatContext context)
context - the current batch context.