Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在函数 appConnect() 下,我向当前连接用户的 IConnection 类添加了几个属性。
我想在其他函数中获取该信息,当我不在 appConnect() 中时如何获取当前连接的 IConnection?
在每个函数中,以下命令将提供当前连接的 IConnection:
IConnection conn = Red5.getConnectionLocal();
在您的 ApplicationAdapter 中,您还可以将连接添加为第一个参数,如下所示:
公共布尔 isFoo(字符串 foo)
变成
public boolean isFoo(IConnection conn, String foo)