Class LogSocket


  • public class LogSocket
    extends WebSocket
    WebSocket class for providing real-time log updates.
    • Constructor Detail

      • LogSocket

        public LogSocket()
    • Method Detail

      • append

        public static void append​(LogMessage message)
        Sends a log message in all sessions.
        Parameters:
        message - the message to send
      • onOpen

        public void onOpen​(javax.websocket.Session session,
                           javax.websocket.EndpointConfig config)
        Called when a socket is opened.
        Parameters:
        session - the session of the socket
        config - the endpoint configuration
      • onClose

        public void onClose​(javax.websocket.Session session,
                            javax.websocket.CloseReason reason)
        Called when a socket is closed.
        Parameters:
        session - the session of the socket
        reason - the close reason
      • onError

        public void onError​(javax.websocket.Session session,
                            Throwable t)
        Called when an error occurred.
        Parameters:
        session - the session of the socket
        t - a description of the error