do {
start = System.currentTimeMillis();
line = reader.readLine();
... //doing other actions
} while ((System.currentTimeMillis() - start) < 10*1000);
此处数据将是第二个客户端的用户名,其套接字ID存储在redis服务器中。 这不符合我的情况。我无法在第二个客户端收到发射数据?我在这里做错了什么?
答案 0 :(得分:0)
您尚未使用socket.on来捕获客户端发出的数据。