setTimeOut和本地函数

时间:2012-07-06 09:13:57

标签: x++ axapta

我正在研究Ax 4.0

我正在尝试在具有本地函数的作业中使用Object.setTimeOut方法,如msdn documentation :

中所述
static void setTimeOutJob()
{
    Object o = new Object();

    void printText()
    {
        ;
        info( "2 seconds has elapsed since the user did anything" );
    }
    ;
    // Set a Time Out with the idle flag set to false
    o.setTimeOut(identifierstr(printText), 2000, false);
}

但是这个简单的工作并没有产生任何东西,所以我似乎在这里遗漏了一些东西。

有人合作过吗?

2 个答案:

答案 0 :(得分:3)

setTimeout方法不适用于作业中的本地函数。

对于一个工作示例,请查看表单tutorial_Timer

<强>更新

setTimeout方法是一种“神奇”功能,但它不会将AX转变为多线程环境。

仅在Windows event loop正在运行时才有效。在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());
}

答案 1 :(得分:0)

我认为它不适用于工作。我已经在方法在元素级别的表单上使用它,并且已经完成了element.setTimeout并且它工作正常。