|
|||||||||
前のクラス 次のクラス | フレームあり フレームなし | ||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
public interface StatusReporter
実行状況をレポートするクラスが実装するインタフェース。
メソッドの概要 | |
---|---|
void |
end(int doneCount,
int faultCount)
処理終了時に呼び出される。 |
void |
report(long dt,
int doneCount,
int faultCount,
int total)
処理が1つ終了する度に呼び出される。 |
void |
reportException(Exception exception)
例外発生時、reportの直前に呼び出される。 |
void |
start()
処理開始時に呼び出される。 |
メソッドの詳細 |
---|
void start()
void report(long dt, int doneCount, int faultCount, int total)
dt
- 終了した処理の経過時間doneCount
- 正常終了した処理の数faultCount
- 異常終了した処理の数total
- 実行すべき全処理の数void reportException(Exception exception)
exception
- 発生した例外void end(int doneCount, int faultCount)
doneCount
- 正常終了した処理の数faultCount
- 異常終了した処理の数
|
|||||||||
前のクラス 次のクラス | フレームあり フレームなし | ||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |