Package com.neovisionaries.ws.client
Class WebSocketOpcode
java.lang.Object
com.neovisionaries.ws.client.WebSocketOpcode
Opcode.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
Opcode for "binary frame" (0x2).static final int
Opcode for "connection close" (0x8).static final int
Opcode for "frame continuation" (0x0).static final int
Opcode for "ping" (0x9).static final int
Opcode for "pong" (0xA).static final int
Opcode for "text frame" (0x1). -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
CONTINUATION
public static final int CONTINUATIONOpcode for "frame continuation" (0x0).- See Also:
-
TEXT
public static final int TEXTOpcode for "text frame" (0x1).- See Also:
-
BINARY
public static final int BINARYOpcode for "binary frame" (0x2).- See Also:
-
CLOSE
public static final int CLOSEOpcode for "connection close" (0x8).- See Also:
-
PING
public static final int PINGOpcode for "ping" (0x9).- See Also:
-
PONG
public static final int PONGOpcode for "pong" (0xA).- See Also:
-
-
Constructor Details
-
WebSocketOpcode
private WebSocketOpcode()
-