このsetTimeout
メソッドは、ジョブのローカル関数では機能しません。
tutorial_Timer
実際の例については、代わりにフォームを見てください。
アップデート:
メソッドは「魔法のsetTimeout
」機能ですが、AX をマルチスレッド環境に変えるわけではありません。
Windowsイベント ループが動作している間のみ機能します。AX コンテキストでは、フォームが実行中で、他の誰かがフォームが完了するのを待っていることを意味します。sleep
機能が基準を満たしていません。
また、オブジェクトは「生きている」必要があり、ガベージコレクションされたオブジェクトを呼び出すのは良くありません!
例 (クラスベース):
class SetTimeoutTest extends Object //Yes, extend or it will not compile
{
str test;
}
public void new()
{
super();
test = "Hello";
}
public str test()
{
return test;
}
protected void timedOut()
{;
test = "2 seconds has elapsed since the user did anything";
info(test);
}
static void main(Args args)
{
SetTimeoutTest t = new SetTimeoutTest();
FormRun fr;
;
t.setTimeOut(methodStr(SetTimeoutTest,timedOut), 2000, false);
//sleep(4000); //Does not work
fr = ClassFactory::formRunClassOnClient(new Args(formstr(CustGroup))); //Could be any form
fr.init();
fr.run();
fr.wait(); //Otherwise the t object runs out of scope
info(t.test());
}