0

我在 Red5 0.9 服务器中使用 Java 时遇到问题,这是代码

package com.hwakin.i5lc.manager;

import java.util.Iterator;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.red5.server.adapter.ApplicationAdapter;
import org.red5.server.api.IClient;
import org.red5.server.api.IConnection;
import org.red5.server.api.IScope;
import org.red5.server.api.Red5;
import org.red5.server.api.service.IServiceCapableConnection;

import com.hwakin.i5l.vo.ExternalPoint;
import com.hwakin.i5l.vo.UserInfo;
import com.hwakin.i5lc.vo.ExternalDrawInfo;

public class I5lcDrawManager extends ApplicationAdapter {
    protected static Log log = LogFactory.getLog(I5lcDrawManager.class.getName());

public void startDrawingHandler(String type,ExternalPoint point, ExternalDrawInfo data){

         try{
            IConnection Lconn = Red5.getConnectionLocal();

            IScope scope = Lconn.getScope();

            Iterator<IConnection> it = scope.getConnections();

            while (it.hasNext()) {
                IConnection conn = it.next();

                if (Lconn.equals(conn)) {
                    continue;
                }

                log.info("i5lvDrawManagerReceiver.startDrawingHandler invoked.");

                IClient client = conn.getClient();

                UserInfo userInfo =(UserInfo) client.getAttribute("userInfo");


                if (conn instanceof IServiceCapableConnection) {
                    if(userInfo.lectureInfo.sync.equals("true")){

                        ((IServiceCapableConnection) conn).invoke("invoke",new Object[]{"i5lvDrawManagerReceiver.startDrawingHandler",type,point,data});
                    }       
                }   
            }

        }catch(Exception e){
                log.debug("Exception in noticeChattingTo Method:"+e);
        }
    }
    public void drawingHandler(String type,ExternalPoint point){

         try{
            IConnection Lconn = Red5.getConnectionLocal();
            IScope scope = Lconn.getScope();

            Iterator<IConnection> it = scope.getConnections();

            while (it.hasNext()) {
                IConnection conn = it.next();

                if (Lconn.equals(conn)) {
                    continue;
                }

                log.info("i5lvDrawManagerReceiver.drawingHandler invoked.");

                IClient client = conn.getClient();

                UserInfo userInfo =(UserInfo) client.getAttribute("userInfo");


                if (conn instanceof IServiceCapableConnection) {
                    if(userInfo.lectureInfo.sync.equals("true")){

                        ((IServiceCapableConnection) conn).invoke("invoke",new Object[]{"i5lvDrawManagerReceiver.drawingHandler",type,point});

                    }

                }   
            }

        }catch(Exception e){
                log.debug("Exception in noticeChattingTo Method:"+e);
        }
    }

    public void endDrawingHandler(String type,ExternalPoint point, ExternalDrawInfo data){

         try{
            IConnection Lconn = Red5.getConnectionLocal();
            IScope scope = Lconn.getScope();

            Iterator<IConnection> it = scope.getConnections();

            while (it.hasNext()) {
                IConnection conn = it.next();

                if (Lconn.equals(conn)) {
                    continue;
                }

                log.info("i5lvDrawManagerReceiver.endDrawingHandler invoked.");

                IClient client = conn.getClient();

                UserInfo userInfo =(UserInfo) client.getAttribute("userInfo");


                if (conn instanceof IServiceCapableConnection) {
                    if(userInfo.lectureInfo.sync.equals("true")){

                        ((IServiceCapableConnection) conn).invoke("invoke",new Object[]{"i5lvDrawManagerReceiver.endDrawingHandler",type,point,data});
                    }       
                }   
            }

        }catch(Exception e){
                log.debug("Exception in noticeChattingTo Method:"+e);
        }
    }
}

错误是:

  1. /opt/red5/dist/webapps/i5lecture/WEB-INF/src/com/hwakin/i5lc/manager/I5lcDrawManager.java 中的错误(第 29 行)

    Iterator <IConnection> it = scope.getConnections();
    

类型不匹配:无法从 Collection<Set<IConnection>> 转换为 Iterator

  1. /opt/red5/dist/webapps/i5lecture/WEB-INF/src/com/hwakin/i5lc/manager/I5lcDrawManager.java 中的错误(第 63 行)

    Iterator<IConnection> it = scope.getConnections();
    

类型不匹配:无法从 Collection<Set<IConnection>> 转换为 Iterator<IConnection>

  1. /opt/red5/dist/webapps/i5lecture/WEB-INF/src/com/hwakin/i5lc/manager/I5lcDrawManager.java 中的错误(第 100 行)

    Iterator<IConnection> it = scope.getConnections();
    

类型不匹配:无法从 Collection<Set<IConnection>> 转换为 Iterator<IConnection>

3 个问题(3 个错误)

4

4 回答 4

2

听起来您的getConnections()方法返回Collection<Set<IConnection>>,而您似乎认为它应该返回Iterator<IConnection>

你忘记来电了.iterator()吗?如

Iterator<IConnection> it = scope.getConnections.iterator();

虽然从编译器错误听起来好像你需要

Iterator<Set<IConnection>> it = scope.getConnections.iterator();
于 2009-11-06T02:47:00.613 回答
2

ACollection是一个Iterable,不是一个Iterator。您不需要Iteratorfor 循环;增强的 for 循环适用于任何Iterable实现。

试试这个:

for (Set<IConnection>> connections : scope.getConnections()) {
  for (IConnection con : connections) {
    /* Use each 'conn' instance... */
  }
}
于 2009-11-06T03:34:37.147 回答
2

我添加了 (Iterator) 来解析 scope.getConnection();

Iterator<IConnection> it = (Iterator) scope.getConnections();

然后我在函数的开头添加了@SuppressWarnings("unchecked")

@SuppressWarnings("unchecked")
    public void startDrawingHandler(String type,ExternalPoint point, ExternalDrawInfo data){

   // Rest of the code

}
于 2009-11-06T06:37:21.397 回答
1

您在这里看到的是一个不稳定的 API。

Iterator<IConnection> getConnections()还是Collection<Set<IConnection>> getConnections()(很好的文档为“获取连接迭代器。” - 评论谎言)?谷歌是你的朋友。

于 2009-11-06T03:51:10.953 回答