Package nablarch.fw.batch.progress
Class Progress
java.lang.Object
nablarch.fw.batch.progress.Progress
進捗状況を保持するクラス。
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiondouble
今回のTPSを返す。終了予測時間を返す。long
残り件数を返す。double
getTps()
全体のTPSを返す。
-
Constructor Details
-
Progress
全体のTPS、今回のTPS、推定終了時間、残り件数を元にオブジェクトを構築する。- Parameters:
tps
- 全体のTPScurrentTps
- 今回のTPSestimatedEndTime
- 推定終了時間remainingCount
- 残り件数
-
-
Method Details
-
getTps
public double getTps()全体のTPSを返す。- Returns:
- 全体のTPS
-
getCurrentTps
public double getCurrentTps()今回のTPSを返す。- Returns:
- 今回のTPS
-
getEstimatedEndTime
終了予測時間を返す。- Returns:
- 終了予測時間
-
getRemainingCount
public long getRemainingCount()残り件数を返す。- Returns:
- 残り件数
-