Class NeverSkipItemSkipPolicy

java.lang.Object
org.springframework.batch.core.step.skip.NeverSkipItemSkipPolicy
All Implemented Interfaces:
SkipPolicy

public class NeverSkipItemSkipPolicy extends Object implements SkipPolicy
SkipPolicy implementation that always returns false, indicating that an item should not be skipped.
Author:
Lucas Ward, Mahmoud Ben Hassine
  • Constructor Details

    • NeverSkipItemSkipPolicy

      public NeverSkipItemSkipPolicy()
  • Method Details

    • shouldSkip

      public boolean shouldSkip(Throwable t, long skipCount)
      Description copied from interface: SkipPolicy
      Returns true or false, indicating whether or not processing should continue with the given throwable. Clients may use skipCount<0 to probe for exception types that are skippable, so implementations should be able to handle gracefully the case where skipCount<0. Implementations should avoid throwing any undeclared exceptions.
      Specified by:
      shouldSkip in interface SkipPolicy
      Parameters:
      t - exception encountered while processing
      skipCount - currently running count of skips
      Returns:
      true if processing should continue, false otherwise.