red5 - 从代码开始新范围

发布于 2024-10-18 21:39:23 字数 302 浏览 0 评论 0原文

有没有办法从应用程序代码中启动 red5 中的新范围(房间)(通常,如果用户连接到路径,它们会自动启动)。我尝试过:


IScope scope = new Scope(roomName);
application.start(scope);//application is my class, extended from ApplicationAdapter 

application.start 的调用返回 false,这意味着无法启动作用域(来自 javadocs),但我不知道为什么。

Is there a way to start a new scope (room) in red5 from the application code (normally they are started automatically if a user connects to the path). I tried:


IScope scope = new Scope(roomName);
application.start(scope);//application is my class, extended from ApplicationAdapter 

the call to application.start returns false, which means the scope could not be started (from the javadocs) but I have no idea why.

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

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

发布评论

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

评论(1

等待圉鍢 2024-10-25 21:39:23

稍后编辑:已解决 - 为了添加新范围,您需要调用 application.getAppScope().createChildScope(roomName); (其中 getAppScope 将返回传递到 中的应用程序的应用程序范围>appStart())

Later edit: solved - in order to add a new scope, you need to call application.getAppScope().createChildScope(roomName); (where getAppScope would return the application scope passed into the application in appStart())

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