timer クラス : StopWithException ゲッタ

説明

タイマー処理を停止するかどうかを示す値を返します。

構文

instance.StopWithException

引数

無し。

返り値

クラス説明
boolタイマー処理を停止するかどうかを示す値。

サンプルコード

次のクラス定義があるとします。

1:

class handle

2:

open method void THandler(dictionary dic)

3:

... // timer handler code.

4:

endmethod

5:

endclass

StopWithException ゲッターの使い方は次のとおりです。

1:

handle h = new handle();

2:

timer tim = new timer(h,"THandler(dictionary)", 1000);

3:

bool stop = tim.StopWithException; // It returns true.

注意

ハンドラで例外が発生した場合にタイマー処理を停止するかどうかのフラグです。

停止する場合は true を返します。 それ以外の場合は false を返します。

デフォルトは true です。

参照リンク

無し。

Copyright © Cooker All rights reserved.