javascript—保存websocketsession并通知该会话,

rseugnpd  于 2021-08-25  发布在  Java
关注(0)|答案(0)|浏览(143)

我正在保存websocketsession,在一个方法中检索该会话并向该会话发送消息,但在我的websocket客户端的.html文件中没有看到该消息,

@Override
public Mono<Void> handle(WebSocketSession webSocketSession) {

   sessions.put(webSocketSession.getId(),webSocketSession)
   return webSocketSession.send(Flux.interval(Duration.ofSeconds(20)).map(i -> 
      webSocketSession.textMessage("MessageSentDirectly")));
 }

public Mono<Void> sendNotification(String sessionId, String notificationMessage) {
    WebSocketSession session = sessions.get(sessionId);

    return session.send(Flux.interval(Duration.ofSeconds(1)).map(i -> 
     session.textMessage("MessageAfterRetreiveSession"))

 }

我有一个用于websocketclient的.html和.js文件,在该html文件上我可以直接看到MessageSent,但没有看到messageafterretreivesession字符串,
为什么我在调用sendnotification方法时没有在客户端接收MessageAfterRetrieveSession?

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题