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.Methods in io.netty.handler.codec.http.websocketx that return WebSocketFrameModifier and TypeMethodDescriptionprotected WebSocketFrameWebSocketFrameAggregator.beginAggregation(WebSocketFrame start, io.netty.buffer.ByteBuf content) WebSocketFrame.copy()WebSocketFrame.duplicate()WebSocketChunkedInput.readChunk(io.netty.buffer.ByteBufAllocator allocator) Fetches a chunked data from the stream.WebSocketChunkedInput.readChunk(io.netty.channel.ChannelHandlerContext ctx) Deprecated.abstract WebSocketFrameWebSocketFrame.replace(io.netty.buffer.ByteBuf content) WebSocketFrame.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, io.netty.buffer.ByteBuf content) protected voidWebSocketClientProtocolHandler.decode(io.netty.channel.ChannelHandlerContext ctx, WebSocketFrame frame, List<Object> out) protected voidWebSocketServerProtocolHandler.decode(io.netty.channel.ChannelHandlerContext ctx, WebSocketFrame frame, List<Object> out) protected voidWebSocket00FrameEncoder.encode(io.netty.channel.ChannelHandlerContext ctx, WebSocketFrame msg, List<Object> out) protected voidWebSocket08FrameEncoder.encode(io.netty.channel.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, io.netty.channel.ChannelPipeline pipeline) -
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.
WebSocketChunkedInput.readChunk(ByteBufAllocator).