类 StepContribution

  • 所有已实现的接口:
    java.io.Serializable

    public class StepContribution
    extends java.lang.Object
    implements java.io.Serializable
    Represents a contribution to a StepExecution, buffering changes until they can be applied at a chunk boundary.
    作者:
    Dave Syer
    另请参阅:
    序列化表格
    • 方法详细资料

      • incrementFilterCount

        public void incrementFilterCount​(int count)
        Increment the counter for the number of items processed.
        参数:
        count - int amount to increment by.
      • incrementReadCount

        public void incrementReadCount()
        Increment the counter for the number of items read.
      • incrementWriteCount

        public void incrementWriteCount​(int count)
        Increment the counter for the number of items written.
        参数:
        count - int amount to increment by.
      • getReadCount

        public int getReadCount()
        Public access to the read counter.
        返回:
        the item counter.
      • getWriteCount

        public int getWriteCount()
        Public access to the write counter.
        返回:
        the item counter.
      • getFilterCount

        public int getFilterCount()
        Public getter for the filter counter.
        返回:
        the filter counter
      • getSkipCount

        public int getSkipCount()
        返回:
        the number of skips collected in this StepContribution (not including skips accumulated in the parent StepExecution).
      • incrementReadSkipCount

        public void incrementReadSkipCount()
        Increment the read skip count for this contribution
      • incrementReadSkipCount

        public void incrementReadSkipCount​(int count)
        Increment the read skip count for this contribution
        参数:
        count - int amount to increment by.
      • getProcessSkipCount

        public int getProcessSkipCount()
        Public getter for the process skip count.
        返回:
        the process skip count
      • toString

        public java.lang.String toString()
        覆盖:
        toString 在类中 java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        覆盖:
        equals 在类中 java.lang.Object
        另请参阅:
        Object.equals(java.lang.Object)
      • hashCode

        public int hashCode()
        覆盖:
        hashCode 在类中 java.lang.Object
        另请参阅:
        Object.hashCode()