public class SkipListenerSupport<T,S> extends java.lang.Object implements SkipListener<T,S>
SkipListener implementations.| Constructor and Description |
|---|
SkipListenerSupport() |
| Modifier and Type | Method and Description |
|---|---|
void |
onSkipInProcess(T item,
java.lang.Throwable t)
This item failed on processing with the given exception, and a skip was called
for.
|
void |
onSkipInRead(java.lang.Throwable t)
Callback for a failure on read that is legal, so is not going to be
re-thrown.
|
void |
onSkipInWrite(S item,
java.lang.Throwable t)
This item failed on write with the given exception, and a skip was called
for.
|
public void onSkipInRead(java.lang.Throwable t)
SkipListeneronSkipInRead in interface SkipListener<T,S>t - cause of the failurepublic void onSkipInWrite(S item, java.lang.Throwable t)
SkipListeneronSkipInWrite in interface SkipListener<T,S>item - the failed itemt - the cause of the failurepublic void onSkipInProcess(T item, java.lang.Throwable t)
SkipListeneronSkipInProcess in interface SkipListener<T,S>item - the failed itemt - the cause of the failure