Package org.springframework.batch.admin.history

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


  }

  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

    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

  }

  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

Related Classes of org.springframework.batch.admin.history.CumulativeHistory

Copyright © 2018 www.massapicom. 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.