类 NeverSkipItemSkipPolicy

    • 方法概要

      所有方法 实例方法 具体方法 
      修饰符和类型方法说明
      booleanshouldSkip​(java.lang.Throwable t, int skipCount)
      Returns true or false, indicating whether or not processing should continue with the given throwable.
      • 从类继承的方法 java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 方法详细资料

      • shouldSkip

        public boolean shouldSkip​(java.lang.Throwable t,
                                  int skipCount)
        从接口复制的说明: 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.
        指定者:
        shouldSkip 在接口中 SkipPolicy
        参数:
        t - exception encountered while processing
        skipCount - currently running count of skips
        返回:
        true if processing should continue, false otherwise.