ActionScript 3 AsyncToken 实现
寻找有关如何实现返回 AsyncToken 的方法的示例或文档链接。
请注意,这不是关于使用/消耗返回 AsyncToken 的方法! 我想自己写这样的方法。
Looking for an example or documentation links as to how to implement a method returning AsyncToken.
Note this is not about using/consuming a method returning AsyncToken! I wish to write such methods myself.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实现返回 AsyncToken 的方法很简单:
请注意,您实际上不能使用
applyResult
和applyFault
方法,因为它们向响应者传递一个Event,当响应者排除结果或故障对象时。
Implementing a method that returns an AsyncToken is simple:
Note that you can't actually use the
applyResult
andapplyFault
methods, because they pass the responders anEvent
, when the responder except the result or fault object.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-第 5 部分-使用模拟 AsyncToken 模拟服务器调用
Swiz framework's TestUtil class has some really cool ways for mocking AsyncToken behavior:
http://code.google.com/p/swizframework/source/browse/trunk/src/main/flex/org/swizframework/util/TestUtil.as
Brian Kotek has a very informative blog post on how to use it to simulate server calls using mock delegates:
http://www.briankotek.com/blog/index.cfm/2009/3/16/Swiz-Part-5-Simulating-Server-Calls-with-a-mock-AsyncToken