Package NeoVisionaries.WebSockets
Class WebSocketOpcode
- java.lang.Object
-
- NeoVisionaries.WebSockets.WebSocketOpcode
-
public class WebSocketOpcode extends java.lang.Object
Opcode.
Read included Apache License 2.0:HERE
AllNeoVisionaries.WebSockets.*
Code Obtained From:GitHub 'NV' (Takahiko Kawasaki)
Public Archive.- See Also:
- RFC 6455, 5.2. Base Framing Protocol
Hi-Lited Source-Code:- View Here: NeoVisionaries/WebSockets/WebSocketOpcode.java
- Open New Browser-Tab: NeoVisionaries/WebSockets/WebSocketOpcode.java
File Size: 1,507 Bytes Line Count: 68 '\n' Characters Found
-
-
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).
-
-
-
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;
-
-