Class nw_ws_opcode_t


  • public final class nw_ws_opcode_t
    extends java.lang.Object
    [@typedef] nw_ws_opcode_t WebSocket opcodes that denote the type of frame sent or received by a WebSocket endpoint. Opcodes define the interpretation of their associated payload data.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int nw_ws_opcode_binary
      [@const] nw_ws_opcode_text Denotes a binary frame.
      static int nw_ws_opcode_close
      [@const] nw_ws_opcode_text Denotes a close frame.
      static int nw_ws_opcode_cont
      [@const] nw_ws_opcode_cont Denotes a continuation frame.
      static int nw_ws_opcode_invalid
      [@const] nw_ws_opcode_invalid Denotes an invalid frame.
      static int nw_ws_opcode_ping
      [@const] nw_ws_opcode_text Denotes a ping frame.
      static int nw_ws_opcode_pong
      [@const] nw_ws_opcode_text Denotes a pong frame.
      static int nw_ws_opcode_text
      [@const] nw_ws_opcode_text Denotes a text frame.
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • nw_ws_opcode_invalid

        public static final int nw_ws_opcode_invalid
        [@const] nw_ws_opcode_invalid Denotes an invalid frame.
        See Also:
        Constant Field Values
      • nw_ws_opcode_cont

        public static final int nw_ws_opcode_cont
        [@const] nw_ws_opcode_cont Denotes a continuation frame.
        See Also:
        Constant Field Values
      • nw_ws_opcode_text

        public static final int nw_ws_opcode_text
        [@const] nw_ws_opcode_text Denotes a text frame.
        See Also:
        Constant Field Values
      • nw_ws_opcode_binary

        public static final int nw_ws_opcode_binary
        [@const] nw_ws_opcode_text Denotes a binary frame.
        See Also:
        Constant Field Values
      • nw_ws_opcode_close

        public static final int nw_ws_opcode_close
        [@const] nw_ws_opcode_text Denotes a close frame.
        See Also:
        Constant Field Values
      • nw_ws_opcode_ping

        public static final int nw_ws_opcode_ping
        [@const] nw_ws_opcode_text Denotes a ping frame.
        See Also:
        Constant Field Values
      • nw_ws_opcode_pong

        public static final int nw_ws_opcode_pong
        [@const] nw_ws_opcode_text Denotes a pong frame.
        See Also:
        Constant Field Values