red5 客户端断开连接不起作用:S

发布于 2024-10-02 00:39:07 字数 187 浏览 0 评论 0原文

我一直在使用 Red5 0.9.0.1,并且我试图断开 Flash 客户端应用程序与我的 red5 服务器应用程序的连接。我已经通过使用 close() 手动断开客户端连接;在我的 Flash 应用程序上。但当用户关闭 Windows 资源管理器或用户失去互联网连接时,我无法实现断开用户连接。 关于如何做到这一点有什么建议吗?有人可以引导我走上正确的道路吗?

I've been using Red5 0.9.0.1, and im trying to disconnect a flash client app from my red5 server app. I've achived to manually disconnect the client by using close(); on my flash app. but I cant just achieve to disconnect the user when the user closes the windows explorer, or the user looses its internet connection.
any suggestion on how to do this? can someone guide me to the right path?

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

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

发布评论

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

评论(2

做个ˇ局外人 2024-10-09 00:39:07

red5服务器方法disconnect正是这样做的。

你需要覆盖它,它看起来像这样......

@Override
public void disconnect(IConnection conn, IScope scope)
{

}

The red5 server method disconnect does exactly this.

you need to override it and it will look like this...

@Override
public void disconnect(IConnection conn, IScope scope)
{

}
瑕疵 2024-10-09 00:39:07

在 IE 中,您必须使用 onUnLoad() 处理程序来调用 Flash 客户端应用程序。然后调用应该关闭 NetConnection;这是“最干净”的方法。否则,在服务器端,I/O 库将检测并处理断开连接(对等断开连接)。

In IE, you must use an onUnLoad() handler to then call into your Flash client app. The call should then close the NetConnection; this is the "cleanest" way to do it. Otherwise on the server side, the I/O library will detect and handle the disconnection (peer disconnect).

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