我websocket发送群聊,代码如下
nutSocket.each(toName, new Each<Session>(){
@Override
public void invoke(int index, Session ele, int length)
throws ExitLoop, ContinueLoop, LoopException {
nutSocket.sendJson(ele.getId(), sendMessage);
}
});
toName: 房间名
我在接受到消息后,解析出是哪个群组,然后 我debug看nutSocket里面的RoomProvider实例里也有 我要找的 toName 的房间,但是就一直不走invoke回调,难道是我语法写错了么...