Class Progress

java.lang.Object
nablarch.fw.batch.progress.Progress

@Published(tag="architect") public class Progress extends Object
進捗状況を保持するクラス。
  • Constructor Details

    • Progress

      public Progress(double tps, double currentTps, Date estimatedEndTime, long remainingCount)
      全体のTPS、今回のTPS、推定終了時間、残り件数を元にオブジェクトを構築する。
      Parameters:
      tps - 全体のTPS
      currentTps - 今回のTPS
      estimatedEndTime - 推定終了時間
      remainingCount - 残り件数
  • Method Details

    • getTps

      public double getTps()
      全体のTPSを返す。
      Returns:
      全体のTPS
    • getCurrentTps

      public double getCurrentTps()
      今回のTPSを返す。
      Returns:
      今回のTPS
    • getEstimatedEndTime

      public Date getEstimatedEndTime()
      終了予測時間を返す。
      Returns:
      終了予測時間
    • getRemainingCount

      public long getRemainingCount()
      残り件数を返す。
      Returns:
      残り件数