public class WebSocketOpcode extends Object
Opcode.
href="https://tools.ietf.org/html/rfc6455#section-5.2"
>RFC 6455, 5.2. Base Framing Protocol</a>| Modifier and Type | Field and 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).
|
public static final int CONTINUATION
Opcode for "frame continuation" (0x0).
public static final int TEXT
Opcode for "text frame" (0x1).
public static final int BINARY
Opcode for "binary frame" (0x2).
public static final int CLOSE
Opcode for "connection close" (0x8).
public static final int PING
Opcode for "ping" (0x9).
public static final int PONG
Opcode for "pong" (0xA).
Copyright © 2021. All Rights Reserved.