red5:如何获取当前的 IConnection?

发布于 2024-08-17 13:03:26 字数 123 浏览 5 评论 0原文

在函数 appConnect() 下,我向当前连接用户的 IConnection 类添加了几个属性。

我想在其他函数中获取该信息,当我不在 appConnect() 中时如何获取当前连接的 IConnection ?

under the function appConnect() i added several attributes to the IConnection class of the current connected user.

i want to fetch that information in other functions, how do i get the IConnection of the current connection while i'm not in appConnect() ?

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

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

发布评论

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

评论(2

软的没边 2024-08-24 13:03:26

在每个函数中,以下命令将提供当前连接的 IConnection:

IConnection conn = Red5.getConnectionLocal();

in each function the following command will provide the IConnection of the current connection:

IConnection conn = Red5.getConnectionLocal();

夜灵血窟げ 2024-08-24 13:03:26

在您的 ApplicationAdapter 中,您还可以将连接添加为第一个参数,如下所示

public boolean isFoo(String foo)

public boolean isFoo(IConnection conn, String foo)

In your ApplicationAdapter you can also add the connection as the first parameter like so:

public boolean isFoo(String foo)

becomes

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