Class JsonWebSocket

    • Constructor Summary

      Constructors 
      Constructor Description
      JsonWebSocket()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected JsonConnection getConnection()  
      void onClose​(int i, java.lang.String string)  
      void onError​(java.lang.Throwable thrwbl)  
      void onMessage​(java.lang.String string)  
      void onOpen​(org.eclipse.jetty.websocket.api.Session sn)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • onOpen

        @OnWebSocketConnect
        public void onOpen​(org.eclipse.jetty.websocket.api.Session sn)
      • onClose

        @OnWebSocketClose
        public void onClose​(int i,
                            java.lang.String string)
      • onError

        @OnWebSocketError
        public void onError​(java.lang.Throwable thrwbl)
      • onMessage

        @OnWebSocketMessage
        public void onMessage​(java.lang.String string)