Uses of Class
org.java_websocket.framing.Framedata.Opcode
-
Packages that use Framedata.Opcode Package Description org.java_websocket org.java_websocket.client This package encapsulates all implementations in relation with the WebSocketClient.org.java_websocket.drafts This package encapsulates all implementations in relation with the WebSocket drafts.org.java_websocket.framing This package encapsulates all interfaces and implementations in relation with the WebSocket frames. -
-
Uses of Framedata.Opcode in org.java_websocket
Methods in org.java_websocket with parameters of type Framedata.Opcode Modifier and Type Method Description void
WebSocket. sendFragmentedFrame(Framedata.Opcode op, ByteBuffer buffer, boolean fin)
Allows to send continuous/fragmented frames conveniently.void
WebSocketImpl. sendFragmentedFrame(Framedata.Opcode op, ByteBuffer buffer, boolean fin)
-
Uses of Framedata.Opcode in org.java_websocket.client
Methods in org.java_websocket.client with parameters of type Framedata.Opcode Modifier and Type Method Description void
WebSocketClient. sendFragmentedFrame(Framedata.Opcode op, ByteBuffer buffer, boolean fin)
-
Uses of Framedata.Opcode in org.java_websocket.drafts
Fields in org.java_websocket.drafts declared as Framedata.Opcode Modifier and Type Field Description protected Framedata.Opcode
Draft. continuousFrameType
Methods in org.java_websocket.drafts with parameters of type Framedata.Opcode Modifier and Type Method Description List<Framedata>
Draft. continuousFrame(Framedata.Opcode op, ByteBuffer buffer, boolean fin)
-
Uses of Framedata.Opcode in org.java_websocket.framing
Methods in org.java_websocket.framing that return Framedata.Opcode Modifier and Type Method Description Framedata.Opcode
Framedata. getOpcode()
Defines the interpretation of the "Payload data".Framedata.Opcode
FramedataImpl1. getOpcode()
static Framedata.Opcode
Framedata.Opcode. valueOf(String name)
Returns the enum constant of this type with the specified name.static Framedata.Opcode[]
Framedata.Opcode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.java_websocket.framing with parameters of type Framedata.Opcode Modifier and Type Method Description static FramedataImpl1
FramedataImpl1. get(Framedata.Opcode opcode)
Get a frame with a specific opcodeConstructors in org.java_websocket.framing with parameters of type Framedata.Opcode Constructor Description ControlFrame(Framedata.Opcode opcode)
Class to represent a control frameDataFrame(Framedata.Opcode opcode)
Class to represent a data frameFramedataImpl1(Framedata.Opcode op)
Constructor for a FramedataImpl without any attributes set apart from the opcode
-