从 Flash 媒体服务器调用响应者类

发布于 2024-11-09 01:58:19 字数 631 浏览 0 评论 0原文

我有一个问题,要在 Flash 媒体服务器中定义的异步函数中调用 Flash 客户端中定义的响应程序方法。

我的客户代码,

私有函数handleResp (结果:Object) { trace("得到 数字 " + 结果.数字); }

netConnection.call("getnum", new 响应者(handleResp));

我的服务器代码,

Application.handleServerResp.onResult = 函数(结果) {

//??????如何调用客户端的handleResp

}

>

Client.prototype.getnum = 函数() {

//无法获取号码,请拨打另一个电话 号码服务器(中央服务器)

centralNetConnection.call (“getnumNOW”,新响应程序 (handleServerResp)); }

I have a question to invoke the responder method defined in a flash client within an asynchronous function defined in a flash media server.

my client code,

private function handleResp
(result:Object) { trace ("get the
number " + result.number); }

netConnection.call ("getnum", new
Responder (handleResp));

my server code,

Application.handleServerResp.onResult
= function (result)
{

//?????? how to invoke the client's handleResp

}

>

Client.prototype.getnum = function ()
{

// cannot get the number, call another
server (central one) for the number

centralNetConnection.call
("getnumNOW", new Responder
(handleServerResp)); }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

七色彩虹 2024-11-16 01:58:19

基本上,Responder 类用于处理服务器方法的返回值,因此您不能异步使用它。
您可以这样做:

创建一个客户端响应程序方法(它应该是公共的,否则FMS无法访问它)。

    public function handleResp (result:Object) { trace ("get the number " + result.number); };

设置NetConnection对象的客户端。

    netConnection.client = this; // if your responder function is in this scope, otherwise set that object what contains your function.

调用服务器端方法。

    netConnection.call ("getnum", null); // set null as resopnder

在服务器端的响应程序方法中,调用客户端方法。

    Application.handleServerResp.onResult = function (result) 
    {
        clientOBJ.call( "handleResp", null, result ); // you don't use responder, so pass null as second parameter
    }

希望这有帮助。

干杯,

塔马斯·格罗纳斯

Basically the Responder class is used to handle the return value of a server method, so you can't use it asynchronously.
You can do this:

Create a client responder method (it should be public, otherwise FMS can't reach it).

    public function handleResp (result:Object) { trace ("get the number " + result.number); };

Set the client of the NetConnection object.

    netConnection.client = this; // if your responder function is in this scope, otherwise set that object what contains your function.

Call the server side method.

    netConnection.call ("getnum", null); // set null as resopnder

In your responder method on the server side, call the client side method.

    Application.handleServerResp.onResult = function (result) 
    {
        clientOBJ.call( "handleResp", null, result ); // you don't use responder, so pass null as second parameter
    }

Hope this helps.

Cheers,

Tamas Gronas

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文