Uses of Interface
org.java_websocket.framing.Framedata
- 
Packages that use Framedata 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.extensions This package encapsulates all interfaces and implementations in relation with the WebSocket Sec-WebSocket-Extensions.org.java_websocket.framing This package encapsulates all interfaces and implementations in relation with the WebSocket frames.org.java_websocket.server This package encapsulates all implementations in relation with the WebSocketServer.
- 
- 
Uses of Framedata in org.java_websocketMethods in org.java_websocket with parameters of type Framedata Modifier and Type Method Description voidWebSocketAdapter. onWebsocketMessageFragment(WebSocket conn, Framedata frame)Deprecated.voidWebSocketListener. onWebsocketMessageFragment(WebSocket conn, Framedata frame)Deprecated.voidWebSocketAdapter. onWebsocketPing(WebSocket conn, Framedata f)This default implementation will send a pong in response to the received ping.voidWebSocketListener. onWebsocketPing(WebSocket conn, Framedata f)Called a ping frame has been received.voidWebSocketAdapter. onWebsocketPong(WebSocket conn, Framedata f)This default implementation does not do anything.voidWebSocketListener. onWebsocketPong(WebSocket conn, Framedata f)Called when a pong frame is received.voidWebSocket. sendFrame(Framedata framedata)Send a frame to the other endvoidWebSocketImpl. sendFrame(Framedata framedata)Method parameters in org.java_websocket with type arguments of type Framedata Modifier and Type Method Description voidWebSocket. sendFrame(Collection<Framedata> frames)Send a collection of frames to the other endvoidWebSocketImpl. sendFrame(Collection<Framedata> frames)
- 
Uses of Framedata in org.java_websocket.clientMethods in org.java_websocket.client with parameters of type Framedata Modifier and Type Method Description voidWebSocketClient. onFragment(Framedata frame)Deprecated.voidWebSocketClient. onWebsocketMessageFragment(WebSocket conn, Framedata frame)voidWebSocketClient. sendFrame(Framedata framedata)Method parameters in org.java_websocket.client with type arguments of type Framedata Modifier and Type Method Description voidWebSocketClient. sendFrame(Collection<Framedata> frames)
- 
Uses of Framedata in org.java_websocket.draftsMethods in org.java_websocket.drafts that return Framedata Modifier and Type Method Description FramedataDraft_6455. translateSingleFrame(ByteBuffer buffer)Methods in org.java_websocket.drafts that return types with arguments of type Framedata Modifier and Type Method Description List<Framedata>Draft. continuousFrame(Framedata.Opcode op, ByteBuffer buffer, boolean fin)List<Framedata>Draft_6455. createFrames(String text, boolean mask)List<Framedata>Draft_6455. createFrames(ByteBuffer binary, boolean mask)abstract List<Framedata>Draft. createFrames(String text, boolean mask)abstract List<Framedata>Draft. createFrames(ByteBuffer binary, boolean mask)List<Framedata>Draft_6455. translateFrame(ByteBuffer buffer)abstract List<Framedata>Draft. translateFrame(ByteBuffer buffer)Methods in org.java_websocket.drafts with parameters of type Framedata Modifier and Type Method Description ByteBufferDraft_6455. createBinaryFrame(Framedata framedata)abstract ByteBufferDraft. createBinaryFrame(Framedata framedata)voidDraft_6455. processFrame(WebSocketImpl webSocketImpl, Framedata frame)abstract voidDraft. processFrame(WebSocketImpl webSocketImpl, Framedata frame)Handle the frame specific to the draft
- 
Uses of Framedata in org.java_websocket.extensionsMethods in org.java_websocket.extensions with parameters of type Framedata Modifier and Type Method Description voidDefaultExtension. decodeFrame(Framedata inputFrame)voidIExtension. decodeFrame(Framedata inputFrame)Decode a frame with a extension specific algorithm.voidDefaultExtension. encodeFrame(Framedata inputFrame)voidIExtension. encodeFrame(Framedata inputFrame)Encode a frame with a extension specific algorithm.voidCompressionExtension. isFrameValid(Framedata inputFrame)voidDefaultExtension. isFrameValid(Framedata inputFrame)voidIExtension. isFrameValid(Framedata inputFrame)Check if the received frame is correctly implemented by the other endpoint and there are no specification errors (like wrongly set RSV)
- 
Uses of Framedata in org.java_websocket.framingClasses in org.java_websocket.framing that implement Framedata Modifier and Type Class Description classBinaryFrameClass to represent a binary frameclassCloseFrameClass to represent a close frameclassContinuousFrameClass to represent a continuous frameclassControlFrameAbstract class to represent control framesclassDataFrameAbstract class to represent data framesclassFramedataImpl1Abstract implementation of a frameclassPingFrameClass to represent a ping frameclassPongFrameClass to represent a pong frameclassTextFrameClass to represent a text framesMethods in org.java_websocket.framing with parameters of type Framedata Modifier and Type Method Description voidFramedata. append(Framedata nextframe)Appends an additional frame to the current frame This methods does not override the opcode, but does override the finvoidFramedataImpl1. append(Framedata nextframe)
- 
Uses of Framedata in org.java_websocket.serverMethods in org.java_websocket.server with parameters of type Framedata Modifier and Type Method Description voidWebSocketServer. onFragment(WebSocket conn, Framedata fragment)Deprecated.voidWebSocketServer. onWebsocketMessageFragment(WebSocket conn, Framedata frame)Deprecated.
 
-