该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());
}