ActionScript 3 AsyncToken实现

时间:2009-06-27 13:48:18

标签: actionscript-3 asynctoken

查找有关如何实现返回AsyncToken的方法的示例或文档链接。

注意这不是关于使用/使用返回AsyncToken的方法!我希望自己写这些方法。

2 个答案:

答案 0 :(得分:2)

实现返回AsyncToken的方法很简单:

function doStuffLater():AsyncToken {
    var token:AsyncToken = new AsyncToken(null);

    // This method will randomly call the responder's 'result' or 'fault'
    // handler.
    function doStuff() {
        var response:String = (Math.random() > 0.5)? "result" : "fault";
        for each (responder:IResponder in (token.responders || [])) {
            // rememeber: this is equivilent to
            // responder.result(...) or responder.fault(...)
            responder[response]("Got a result!");
        }
    }

    setTimeout(doStuff, 1000);

    return token;
}

请注意,您实际上无法使用applyResultapplyFault方法,因为当响应者除了结果或故障对象时,它们会将响应者传递给Event

答案 1 :(得分:0)

Swiz框架的TestUtil类有一些非常酷的方法来模拟AsyncToken行为:

http://code.google.com/p/swizframework/source/browse/trunk/src/main/flex/org/swizframework/util/TestUtil.as

Brian Kotek有一篇非常丰富的博客文章,介绍如何使用模拟代表模拟服务器调用:

http://www.briankotek.com/blog/index.cfm/2009/3/16/Swiz-Part-5-Simulating-Server-Calls-with-a-mock-AsyncToken