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.
-
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.Subclasses with type arguments of type WebSocketFrame in io.netty.handler.codec.http.websocketxModifier and TypeClassDescriptionclassEncodes aWebSocketFrameinto aByteBuf.classEncodes a web socket frame into wire protocol version 8 format.classHandler that aggregate fragmented WebSocketFrame's.classHandler that aggregate fragmented WebSocketFrame's.classHandler that aggregate fragmented WebSocketFrame's.Classes in io.netty.handler.codec.http.websocketx that implement interfaces with type arguments of type WebSocketFrameModifier and TypeClassDescriptionfinal classAChunkedInputthat fetches data chunk by chunk for use with WebSocket chunked transfers.Methods in io.netty.handler.codec.http.websocketx that return WebSocketFrameModifier and TypeMethodDescriptionprotected WebSocketFrameWebSocketFrameAggregator.beginAggregation(WebSocketFrame start, ByteBuf content) WebSocketFrame.copy()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 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) protected booleanWebSocketFrameAggregator.isStartMessage(WebSocketFrame msg) protected ObjectWebSocketFrameAggregator.newContinueResponse(WebSocketFrame start, int maxContentLength, ChannelPipeline pipeline) -
Uses of WebSocketFrame in io.netty.handler.codec.http.websocketx.extensions
Subclasses with type arguments of type WebSocketFrame in io.netty.handler.codec.http.websocketx.extensionsModifier and TypeClassDescriptionclassConvenient class for io.netty.handler.codec.http.websocketx.extensions.WebSocketExtension decoder.classConvenient class for io.netty.handler.codec.http.websocketx.extensions.WebSocketExtension encoder.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.
WebSocketChunkedInput.readChunk(ByteBufAllocator).