Class WebSocketOpcode

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int BINARY
      Opcode for "binary frame" (0x2).
      static int CLOSE
      Opcode for "connection close" (0x8).
      static int CONTINUATION
      Opcode for "frame continuation" (0x0).
      static int PING
      Opcode for "ping" (0x9).
      static int PONG
      Opcode for "pong" (0xA).
      static int TEXT
      Opcode for "text frame" (0x1).
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • CONTINUATION

        🡇    
        public static final int CONTINUATION
        Opcode for "frame continuation" (0x0).
        See Also:
        Constant Field Values
        Code:
        Exact Field Declaration Expression:
         public static final int CONTINUATION = 0x0;
        
      • TEXT

        🡅  🡇    
        public static final int TEXT
        Opcode for "text frame" (0x1).
        See Also:
        Constant Field Values
        Code:
        Exact Field Declaration Expression:
         public static final int TEXT = 0x1;
        
      • BINARY

        🡅  🡇    
        public static final int BINARY
        Opcode for "binary frame" (0x2).
        See Also:
        Constant Field Values
        Code:
        Exact Field Declaration Expression:
         public static final int BINARY = 0x2;
        
      • CLOSE

        🡅  🡇    
        public static final int CLOSE
        Opcode for "connection close" (0x8).
        See Also:
        Constant Field Values
        Code:
        Exact Field Declaration Expression:
         public static final int CLOSE = 0x8;
        
      • PING

        🡅  🡇    
        public static final int PING
        Opcode for "ping" (0x9).
        See Also:
        Constant Field Values
        Code:
        Exact Field Declaration Expression:
         public static final int PING = 0x9;
        
      • PONG

        🡅    
        public static final int PONG
        Opcode for "pong" (0xA).
        See Also:
        Constant Field Values
        Code:
        Exact Field Declaration Expression:
         public static final int PONG = 0xA;