Class StepExecutionHistory

java.lang.Object
org.springframework.cloud.dataflow.rest.job.StepExecutionHistory

public class StepExecutionHistory extends Object
Stores the cumulative information for a specific StepExecution's history.
Author:
Glenn Renfro
  • Constructor Details

    • StepExecutionHistory

      public StepExecutionHistory(String stepName)
  • Method Details

    • append

      public void append(org.springframework.batch.core.StepExecution stepExecution)
    • getStepName

      public String getStepName()
    • getCount

      public int getCount()
      Returns the number of StepExecutions are being used for history calculations. The id of an existing step execution for a specific job execution (required)
      Returns:
      the number of StepExecutions.
    • getCommitCount

      public CumulativeHistory getCommitCount()
    • getRollbackCount

      public CumulativeHistory getRollbackCount()
    • getReadCount

      public CumulativeHistory getReadCount()
    • getWriteCount

      public CumulativeHistory getWriteCount()
    • getFilterCount

      public CumulativeHistory getFilterCount()
    • getReadSkipCount

      public CumulativeHistory getReadSkipCount()
    • getWriteSkipCount

      public CumulativeHistory getWriteSkipCount()
    • getProcessSkipCount

      public CumulativeHistory getProcessSkipCount()
    • getDuration

      public CumulativeHistory getDuration()
      Stores the cumulative history for a specified StepExecution's duration.
      Returns:
      CumulativeHistory for the duration of a specified StepExecution.
    • getDurationPerRead

      public CumulativeHistory getDurationPerRead()