Examples of CumulativeHistory


Examples of org.springframework.batch.admin.history.CumulativeHistory

    if (stepExecutionHistory.getCount() == 0) {
      percentCompleteBasis = PercentCompleteBasis.NOHISTORY;
      return 0.5;
    }

    CumulativeHistory readHistory = stepExecutionHistory.getReadCount();

    if (readHistory.getMean() == 0) {
      percentCompleteBasis = PercentCompleteBasis.DURATION;
      return getDurationBasedEstimate(duration);
    }

    percentCompleteBasis = PercentCompleteBasis.READCOUNT;
    return stepExecution.getReadCount() / readHistory.getMean();

  }
View Full Code Here

Examples of org.springframework.batch.admin.history.CumulativeHistory

  }

  private double getDurationBasedEstimate(double duration) {

    CumulativeHistory durationHistory = stepExecutionHistory.getDuration();
    if (durationHistory.getMean() == 0) {
      percentCompleteBasis = PercentCompleteBasis.NOINFORMATION;
      return 0.5;
    }
    return duration / durationHistory.getMean();

  }
View Full Code Here

Examples of org.springframework.batch.admin.history.CumulativeHistory

    if (stepExecutionHistory.getCount() == 0) {
      percentCompleteBasis = PercentCompleteBasis.NOHISTORY;
      return 0.5;
    }

    CumulativeHistory readHistory = stepExecutionHistory.getReadCount();

    if (readHistory.getMean() == 0) {
      percentCompleteBasis = PercentCompleteBasis.DURATION;
      return getDurationBasedEstimate(duration);
    }

    percentCompleteBasis = PercentCompleteBasis.READCOUNT;
    return stepExecution.getReadCount() / readHistory.getMean();

  }
View Full Code Here

Examples of org.springframework.batch.admin.history.CumulativeHistory

  }

  private double getDurationBasedEstimate(double duration) {

    CumulativeHistory durationHistory = stepExecutionHistory.getDuration();
    if (durationHistory.getMean() == 0) {
      percentCompleteBasis = PercentCompleteBasis.NOINFORMATION;
      return 0.5;
    }
    return duration / durationHistory.getMean();

  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.