红色5.禁用自动创建房间

发布于 2024-11-01 04:35:50 字数 42 浏览 1 评论 0原文

如何在 Red5 中禁用自动创建房间?

谢谢, 西里尔

How I can disable automatic creation of room in Red5?

Thanks,
Cyril

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

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

发布评论

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

评论(2

£噩梦荏苒 2024-11-08 04:35:50

它应该像覆盖应用程序适配器类中的 roomStart() 并返回 false 一样简单。

@Override
public boolean roomStart(IScope room) {
    return false;
}

It should be as simple as overriding roomStart() in your application adapter class and returning false.

@Override
public boolean roomStart(IScope room) {
    return false;
}
九厘米的零° 2024-11-08 04:35:50

只需不连接到房间即可。默认情况下,当您将客户端连接到应用程序根以外的范围时,它将创建房间实例。您可以做的另一件事是在服务器上创建范围后将其删除。

Simply by not connecting to a room. By default when you connect a client to a scope other than the application root it will create the room instance. Another thing you can do is remove the scope after it creates it on the server.

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