示例#1
0
 public void connect()
 {
     stompClient = new StompClientAll("ws://127.0.0.1:8080/gs-guide-websocket");
     stompClient.StompConnect().add(() => {
         Debug.Log("Connected!!!");
         stompClient.Subscribe("/topic/greetings", onMsg);
     });
 }