Package com.iizix.nio

Interface WebSocketCommListener

    • Field Detail

      • CC_GOING_AWAY

        static final int CC_GOING_AWAY
        Going Away: sent when e.g. IE closes a window.
        See Also:
        Constant Field Values
      • CC_NO_STATUS_RECEIVED

        static final int CC_NO_STATUS_RECEIVED
        No Status Received: send when e.g. JS performs Close without code/reason.
        See Also:
        Constant Field Values
      • CC_ABNORMAL_CLOSURE

        static final int CC_ABNORMAL_CLOSURE
        Abnormal Closure: iOS causes 1006 "Read EOF" if Safari is closed, or "Harsh disconnect" if just left alone for a long time.
        See Also:
        Constant Field Values
      • CC_INVALID_PAYLOAD_DATA

        static final int CC_INVALID_PAYLOAD_DATA
        Invalid frame payload data.
        See Also:
        Constant Field Values
    • Method Detail

      • onCommOpen

        void onCommOpen​(IWebSocketComm comm)
        Called when the communication link is opened.
        Parameters:
        comm - The WebSocket communication instance.
      • onCommConnected

        void onCommConnected​(IWebSocketComm comm)
        Called when the communication link is connected.
        Parameters:
        comm - The WebSocket communication instance.
      • onCommData

        void onCommData​(IWebSocketComm comm,
                        byte[] data,
                        int offset,
                        int len)
        Called when the communication link has received binary data.
        Parameters:
        comm - The WebSocket communication instance.
        data - The data byte array.
        offset - Offset in buffer.
        len - Length of data.
      • onCommData

        void onCommData​(IWebSocketComm comm,
                        java.lang.String data)
        Called when the communication link has received String data.
        Parameters:
        comm - The WebSocket communication instance.
        data - The String data.
      • onCommHeartBeat

        void onCommHeartBeat​(IWebSocketComm comm,
                             long duration)
        Called when a heart-beat frame is received.
        Parameters:
        comm - The WebSocket communication instance.
        duration - Duration of the PING-PONG message exchange in milliseconds.
      • onCommTimeout

        void onCommTimeout​(IWebSocketComm comm,
                           boolean isReadTimeout)
        Called when the communication link has timed out on a read or write operation.
        Parameters:
        comm - The WebSocket communication instance.
        isReadTimeout - Flag indicating read timeout when true, false indicates write timeout.
      • onCommError

        void onCommError​(IWebSocketComm comm,
                         java.lang.Throwable e)
        Called when the communication link is closed.
        Parameters:
        comm - The WebSocket communication instance.
        e - The exception.
      • onCommClosing

        void onCommClosing​(IWebSocketComm comm)
        Called when the communication link is closing.
        Parameters:
        comm - The WebSocket communication instance.
      • onCommClosed

        void onCommClosed​(IWebSocketComm comm,
                          int code,
                          java.lang.String reason)
        Called when the communication link is closed.
        Parameters:
        comm - The WebSocket communication instance.
        code - The reason code for closure.
        reason - The reason string explanation for closure.