@Published(tag="architect") public class Progress extends Object
| コンストラクタと説明 |
|---|
Progress(double tps,
double currentTps,
Date estimatedEndTime,
long remainingCount)
全体のTPS、今回のTPS、推定終了時間、残り件数を元にオブジェクトを構築する。
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
double |
getCurrentTps()
今回のTPSを返す。
|
Date |
getEstimatedEndTime()
終了予測時間を返す。
|
long |
getRemainingCount()
残り件数を返す。
|
double |
getTps()
全体のTPSを返す。
|
public Progress(double tps,
double currentTps,
Date estimatedEndTime,
long remainingCount)
tps - 全体のTPScurrentTps - 今回のTPSestimatedEndTime - 推定終了時間remainingCount - 残り件数public double getTps()
public double getCurrentTps()
public Date getEstimatedEndTime()
public long getRemainingCount()