timer クラス : Stop()メソッド

説明

タイマー処理を停止します。

構文

instance.Stop()

引数

無し。

返り値

無し。

サンプルコード

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

1:

class handle

2:

open method void THandler(dictionary dic)

3:

... // timer handler code.

4:

endmethod

5:

endclass

Stop() メソッドの使い方は次のとおりです。

1:

handle h = new handle();

2:

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

3:

tim.Start();

4:

tim.Stop(); // It stop the timer handling.

注意

スクリプトの終了時及びアプリケーションの終了時にはタイマー処理を停止してください。

タイマー処理がすでに停止している場合、再呼び出しは無視されます。

参照リンク

無し。

Copyright © Cooker All rights reserved.