Uses of Class
io.netty.handler.codec.http.websocketx.WebSocketFrame
Packages that use WebSocketFrame
Package
Description
Encoder, decoder, handshakers and their related message types for
Web Socket data frames.
Encoder, decoder, handshakers to handle
WebSocket Extensions.
Encoder, decoder, handshakers to handle most common WebSocket Compression Extensions.
-
Uses of WebSocketFrame in io.netty.handler.codec.http.websocketx
Subclasses of WebSocketFrame in io.netty.handler.codec.http.websocketxModifier and TypeClassDescriptionclassWeb Socket frame containing binary data.classWeb Socket Frame for closing the connection.classWeb Socket continuation frame containing continuation text or binary data.classWeb Socket frame containing binary data.classWeb Socket frame containing binary data.classWeb Socket text frame.Methods in io.netty.handler.codec.http.websocketx that return WebSocketFrameModifier and TypeMethodDescriptionprotected WebSocketFrameWebSocketFrameAggregator.beginAggregation(WebSocketFrame start, ByteBuf content) WebSocketFrame.copy()private WebSocketFrameWebSocket00FrameDecoder.decodeBinaryFrame(ChannelHandlerContext ctx, byte type, ByteBuf buffer) private WebSocketFrameWebSocket00FrameDecoder.decodeTextFrame(ChannelHandlerContext ctx, ByteBuf buffer) WebSocketFrame.duplicate()WebSocketChunkedInput.readChunk(ByteBufAllocator allocator) Fetches a chunked data from the stream.WebSocketChunkedInput.readChunk(ChannelHandlerContext ctx) Deprecated.abstract WebSocketFrameWebSocketFrame.retain()WebSocketFrame.retain(int increment) WebSocketFrame.retainedDuplicate()WebSocketFrame.touch()Methods in io.netty.handler.codec.http.websocketx with parameters of type WebSocketFrameModifier and TypeMethodDescriptionprotected WebSocketFrameWebSocketFrameAggregator.beginAggregation(WebSocketFrame start, ByteBuf content) protected voidWebSocketClientProtocolHandler.decode(ChannelHandlerContext ctx, WebSocketFrame frame, List<Object> out) protected voidWebSocketProtocolHandler.decode(ChannelHandlerContext ctx, WebSocketFrame frame, List<Object> out) protected voidWebSocketServerProtocolHandler.decode(ChannelHandlerContext ctx, WebSocketFrame frame, List<Object> out) protected voidWebSocket00FrameEncoder.encode(ChannelHandlerContext ctx, WebSocketFrame msg, List<Object> out) protected voidWebSocket08FrameEncoder.encode(ChannelHandlerContext ctx, WebSocketFrame msg, List<Object> out) protected booleanWebSocketFrameAggregator.isAggregated(WebSocketFrame msg) protected booleanWebSocketFrameAggregator.isContentLengthInvalid(WebSocketFrame start, int maxContentLength) protected booleanWebSocketFrameAggregator.isContentMessage(WebSocketFrame msg) private static booleanUtf8FrameValidator.isControlFrame(WebSocketFrame frame) protected booleanWebSocketFrameAggregator.isStartMessage(WebSocketFrame msg) protected ObjectWebSocketFrameAggregator.newContinueResponse(WebSocketFrame start, int maxContentLength, ChannelPipeline pipeline) private voidUtf8FrameValidator.protocolViolation(ChannelHandlerContext ctx, WebSocketFrame frame, CorruptedWebSocketFrameException ex) -
Uses of WebSocketFrame in io.netty.handler.codec.http.websocketx.extensions
Methods in io.netty.handler.codec.http.websocketx.extensions with parameters of type WebSocketFrameModifier and TypeMethodDescriptionbooleanWebSocketExtensionFilter.mustSkip(WebSocketFrame frame) Returnstrueif the evaluation of the extension must skipped for the given frame otherwisefalse. -
Uses of WebSocketFrame in io.netty.handler.codec.http.websocketx.extensions.compression
Methods in io.netty.handler.codec.http.websocketx.extensions.compression with parameters of type WebSocketFrameModifier and TypeMethodDescriptionprotected abstract booleanDeflateDecoder.appendFrameTail(WebSocketFrame msg) protected booleanPerFrameDeflateDecoder.appendFrameTail(WebSocketFrame msg) protected booleanPerMessageDeflateDecoder.appendFrameTail(WebSocketFrame msg) private ByteBufDeflateEncoder.compressContent(ChannelHandlerContext ctx, WebSocketFrame msg) protected voidDeflateDecoder.decode(ChannelHandlerContext ctx, WebSocketFrame msg, List<Object> out) protected voidPerMessageDeflateDecoder.decode(ChannelHandlerContext ctx, WebSocketFrame msg, List<Object> out) private ByteBufDeflateDecoder.decompressContent(ChannelHandlerContext ctx, WebSocketFrame msg) protected voidDeflateEncoder.encode(ChannelHandlerContext ctx, WebSocketFrame msg, List<Object> out) protected voidPerMessageDeflateEncoder.encode(ChannelHandlerContext ctx, WebSocketFrame msg, List<Object> out) protected abstract intDeflateDecoder.newRsv(WebSocketFrame msg) protected intPerFrameDeflateDecoder.newRsv(WebSocketFrame msg) protected intPerMessageDeflateDecoder.newRsv(WebSocketFrame msg) protected abstract booleanDeflateEncoder.removeFrameTail(WebSocketFrame msg) protected booleanPerFrameDeflateEncoder.removeFrameTail(WebSocketFrame msg) protected booleanPerMessageDeflateEncoder.removeFrameTail(WebSocketFrame msg) protected abstract intDeflateEncoder.rsv(WebSocketFrame msg) protected intPerFrameDeflateEncoder.rsv(WebSocketFrame msg) protected intPerMessageDeflateEncoder.rsv(WebSocketFrame msg)
WebSocketChunkedInput.readChunk(ByteBufAllocator).