Interface SkipPolicy
- All Known Implementing Classes:
AlwaysSkipItemSkipPolicy,CompositeSkipPolicy,ExceptionClassifierSkipPolicy,LimitCheckingItemSkipPolicy,NeverSkipItemSkipPolicy
public interface SkipPolicy
Policy for determining whether or not some processing should be skipped.
- Author:
- Lucas Ward, Dave Syer, Mahmoud Ben Hassine
-
Method Summary
Modifier and TypeMethodDescriptionbooleanshouldSkip(Throwable t, long skipCount) Returns true or false, indicating whether or not processing should continue with the given throwable.
-
Method Details
-
shouldSkip
Returns true or false, indicating whether or not processing should continue with the given throwable. Clients may useskipCount<0to probe for exception types that are skippable, so implementations should be able to handle gracefully the case whereskipCount<0. Implementations should avoid throwing any undeclared exceptions.- Parameters:
t- exception encountered while processingskipCount- currently running count of skips- Returns:
- true if processing should continue, false otherwise.
- Throws:
SkipLimitExceededException- if a limit is breachedIllegalArgumentException- if the exception is null
-