red5:如何获取当前的 IConnection?
在函数 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在每个函数中,以下命令将提供当前连接的 IConnection:
IConnection conn = Red5.getConnectionLocal();
in each function the following command will provide the IConnection of the current connection:
IConnection conn = Red5.getConnectionLocal();
在您的 ApplicationAdapter 中,您还可以将连接添加为第一个参数,如下所示
:
In your ApplicationAdapter you can also add the connection as the first parameter like so:
becomes