Package | Description |
---|---|
org.springframework.batch.core.step.item |
Specific implementations of step concerns for item-oriented approach.
|
org.springframework.batch.core.step.skip |
Specific implementations of skip concerns for items in a step.
|
Modifier and Type | Method and Description |
---|---|
protected SkipPolicy |
FaultTolerantStepFactoryBean.createSkipPolicy() |
Modifier and Type | Method and Description |
---|---|
void |
FaultTolerantChunkProcessor.setProcessSkipPolicy(SkipPolicy SkipPolicy) |
void |
FaultTolerantStepFactoryBean.setSkipPolicy(SkipPolicy skipPolicy)
A
SkipPolicy that determines the outcome of an exception when
processing an item. |
void |
FaultTolerantChunkProvider.setSkipPolicy(SkipPolicy SkipPolicy)
The policy that determines whether exceptions can be skipped on read.
|
void |
FaultTolerantChunkProcessor.setWriteSkipPolicy(SkipPolicy SkipPolicy) |
Modifier and Type | Class and Description |
---|---|
class |
AlwaysSkipItemSkipPolicy
Implementation of the
SkipPolicy interface that
will always return that an item should be skipped. |
class |
CompositeSkipPolicy |
class |
ExceptionClassifierSkipPolicy
A
SkipPolicy that depends on an exception classifier to make its
decision, and then delegates to the classifier result. |
class |
LimitCheckingItemSkipPolicy
SkipPolicy that determines whether or not reading should continue
based upon how many items have been skipped. |
class |
NeverSkipItemSkipPolicy
SkipPolicy implementation that always returns false,
indicating that an item should not be skipped. |
Modifier and Type | Method and Description |
---|---|
void |
CompositeSkipPolicy.setSkipPolicies(SkipPolicy[] skipPolicies) |
Modifier and Type | Method and Description |
---|---|
void |
ExceptionClassifierSkipPolicy.setExceptionClassifier(SubclassClassifier<Throwable,SkipPolicy> classifier)
The classifier that will be used to choose a delegate policy.
|
void |
ExceptionClassifierSkipPolicy.setPolicyMap(Map<Class<? extends Throwable>,SkipPolicy> policyMap)
Setter for policy map.
|
Constructor and Description |
---|
CompositeSkipPolicy(SkipPolicy[] skipPolicies) |
Copyright © 2013 SpringSource. All rights reserved.